Merge pull request #102 from Emiluren/master

Remove test for degenerate triangle
This commit is contained in:
Erik Simmler 2016-08-21 21:11:43 -04:00 committed by GitHub
commit 716810612c

View file

@ -37,8 +37,6 @@ tests =
, test "triangles violating triangle inequality are illegal 1" <|
\() -> Expect.equal (Err "Violates inequality") (triangleKind 1 1 3)
, test "triangles violating triangle inequality are illegal 2" <|
\() -> Expect.equal (Err "Violates inequality") (triangleKind 2 4 2)
, test "triangles violating triangle inequality are illegal 3" <|
\() -> Expect.equal (Err "Violates inequality") (triangleKind 7 3 2)
]