Skip to content

Commit f43c81e

Browse files
authored
Update src/TestFramework/MSTest.Core/Assertions/Assert.IsInstanceOfType.cs
1 parent a19df4d commit f43c81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TestFramework/MSTest.Core/Assertions/Assert.IsInstanceOfType.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public static void IsNotInstanceOfType(object value, Type wrongType, string mess
261261
/// type and throws an exception if the specified type is in the
262262
/// inheritance hierarchy of the object.
263263
/// </summary>
264-
public static void IsNotInstanceOfType<T>(object value,string message, params object[] parameters)
264+
public static void IsNotInstanceOfType<T>(object value, string message, params object[] parameters)
265265
{
266266
IsNotInstanceOfType(value, typeof(T), message, parameters);
267267
}

0 commit comments

Comments
 (0)