diff --git a/Directory.Packages.props b/Directory.Packages.props index 9eaa25b08f..02bd76565d 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -30,8 +30,8 @@ - - + + diff --git a/tests/Silk.NET.Maths.Tests/Vector2Tests.cs b/tests/Silk.NET.Maths.Tests/Vector2Tests.cs index c7e6d4086b..a3fe0665b8 100644 --- a/tests/Silk.NET.Maths.Tests/Vector2Tests.cs +++ b/tests/Silk.NET.Maths.Tests/Vector2Tests.cs @@ -815,8 +815,8 @@ public void Vector2ConstructorTest2() public void Vector2ConstructorTest3() { Vector2D target = new Vector2D(float.NaN, float.MaxValue); - Assert.Equal(target.X, float.NaN); - Assert.Equal(target.Y, float.MaxValue); + Assert.Equal(float.NaN, target.X); + Assert.Equal(float.MaxValue, target.Y); } // A test for Vector2f (float)