diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index 0191a0c..a803926 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -4,18 +4,8 @@ net7.0 false - - - - x64 - - - - 1701;1702;1822 - - - 1701;1702;1822 + x64 diff --git a/Tests/UIntTests.cs b/Tests/UIntTests.cs index 34176e9..0bbffbc 100644 --- a/Tests/UIntTests.cs +++ b/Tests/UIntTests.cs @@ -128,8 +128,8 @@ public void UIntAddUInt() }); var v = m.AddUIntConst(0); - v += i; - v += j; + v += m.AddUIntConst(i); + v += m.AddUIntConst(j); m.Solve(); Assert.AreEqual(State.Satisfiable, m.State); Assert.AreEqual(i + j, v.X);