Skip to content

Commit

Permalink
Update src/TestFramework/MSTest.Core/Assertions/Assert.IsInstanceOfTy…
Browse files Browse the repository at this point in the history
…pe.cs
  • Loading branch information
Evangelink committed Sep 15, 2022
1 parent a19df4d commit f43c81e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public static void IsNotInstanceOfType(object value, Type wrongType, string mess
/// type and throws an exception if the specified type is in the
/// inheritance hierarchy of the object.
/// </summary>
public static void IsNotInstanceOfType<T>(object value,string message, params object[] parameters)
public static void IsNotInstanceOfType<T>(object value, string message, params object[] parameters)
{
IsNotInstanceOfType(value, typeof(T), message, parameters);
}
Expand Down

0 comments on commit f43c81e

Please sign in to comment.