1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed test

This commit is contained in:
Brian Fiete 2022-06-24 07:08:05 -07:00
parent 4c6b43761f
commit b1023ff36a

View file

@ -138,9 +138,9 @@ namespace Tests
eg.Set(66);
Test.Assert(eg == .B);
var ea = EnumA.GetMaxValue();
var ea = Enum.GetMaxValue<EnumA>();
Test.Assert(ea == .B);
Test.Assert(EnumA.GetCount() == 2);
Test.Assert(Enum.GetCount<EnumA>() == 2);
}
}
}