Skip to content

Commit

Permalink
Rename test args
Browse files Browse the repository at this point in the history
  • Loading branch information
schmittjoseph committed Aug 23, 2023
1 parent 0772c4f commit 590d7c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class TypeUtilsTests
[InlineData("CustomNamespace.Microsoft", "Microsoft", false)]
[InlineData("SubString2", "SubString", false)]
[InlineData("SubString", "SubString2", false)]
public void IsSubType(string parentType, string typeName, bool doesBelongTo)
public void IsSubType(string parentType, string typeName, bool isSubType)
{
Assert.Equal(doesBelongTo, TypeUtils.IsSubType(parentType, typeName));
Assert.Equal(isSubType, TypeUtils.IsSubType(parentType, typeName));
}
}
}

0 comments on commit 590d7c3

Please sign in to comment.