tracks/haskell/exercises/pythagorean-triplet/test/Tests.hs in trackler-2.1.0.9 vs tracks/haskell/exercises/pythagorean-triplet/test/Tests.hs in trackler-2.1.0.10

- old
+ new

@@ -25,12 +25,9 @@ description = unwords $ show <$> [x, y] assertion = pythagoreanTriplets x y `shouldBe` uncurry3 mkTriplet <$> ts uncurry3 f (x, y, z) = f x y z - -- As of 2016-09-12, there was no reference file - -- for the test cases in `exercism/x-common`. - isPythagoreanCases = [ ( (3, 4, 5), True ) , ( (3, 5, 4), True ) , ( (4, 3, 5), True ) , ( (4, 5, 3), True ) , ( (5, 3, 4), True )