From: Jarl Gullberg Date: Wed, 31 May 2017 14:45:18 +0000 (+0200) Subject: Ensure that the vectors are different. X-Git-Tag: v3.0.0~107^2~1^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ac04b9e364631355e9445f3a4597a0f860409dd;p=platform%2Fcore%2Fcsapi%2Fopentk.git Ensure that the vectors are different. --- diff --git a/tests/OpenTK.Tests/Vector2Tests.fs b/tests/OpenTK.Tests/Vector2Tests.fs index 3925c7c..1bde27d 100644 --- a/tests/OpenTK.Tests/Vector2Tests.fs +++ b/tests/OpenTK.Tests/Vector2Tests.fs @@ -165,7 +165,7 @@ module Vector2 = [] let ``Vector inequality operator works`` (x, y) = let v1 = Vector2(x, y) - let v2 = Vector2(y, x) + let v2 = Vector2(x + (float32)1 , y + (float32)1) let inequality = v1 <> v2 Assert.True(inequality)