Skip to content

Commit 7ea4b10

Browse files
committed
Remove bad test.
1 parent 8782ca4 commit 7ea4b10

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

tests/Maths/Maths/PlaneTests.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,6 @@ public void PlaneEqualityTest()
102102
Assert.Equal(expected, actual);
103103
}
104104

105-
// A test for GetHashCode ()
106-
[Fact]
107-
public void PlaneGetHashCodeTest()
108-
{
109-
Plane<float> target = new Plane<float>(1.0f, 2.0f, 3.0f, 4.0f);
110-
111-
int expected = target.Normal.GetHashCode() + target.Distance.GetHashCode();
112-
int actual = target.GetHashCode();
113-
Assert.Equal(expected, actual);
114-
}
115-
116105
// A test for Plane<float> (float, float, float, float)
117106
[Fact]
118107
public void PlaneConstructorTest1()

0 commit comments

Comments
 (0)