build: make release restore reproducible

This commit is contained in:
Erik 2026-08-18 10:29:00 +02:00
parent b459e0cf0c
commit c38f6b8852
129 changed files with 16810 additions and 188 deletions

View file

@ -33,8 +33,8 @@ public class CellArrayTests
{
var a = new CellArray();
a.Add(0xA9B40170u);
Assert.True(a.Contains(0xA9B40170u));
Assert.False(a.Contains(0xA9B40171u));
Assert.Contains(0xA9B40170u, a);
Assert.DoesNotContain(0xA9B40171u, a);
}
[Fact]