Skip to content

Commit

Permalink
try to kickstart CI by converting these to constraint model
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenaw committed Nov 24, 2023
1 parent 466b935 commit e8843a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ public void AttributeUsage_NoInheritance()
{
var usageAttrib = Attribute.GetCustomAttribute(typeof(SetUpFixtureAttribute), typeof(AttributeUsageAttribute)) as AttributeUsageAttribute;

Assert.NotNull(usageAttrib);
Assert.True(usageAttrib.Inherited);
Assert.That(usageAttrib, Is.Not.Null);
Assert.That(usageAttrib.Inherited, Is.True);
}

private static class StaticSetupClass
Expand Down

0 comments on commit e8843a9

Please sign in to comment.