mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed test
This commit is contained in:
parent
4c6b43761f
commit
b1023ff36a
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue