1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 04:51:57 +03:00

Silence a warning.

This commit is contained in:
Rob Rix 2016-07-12 18:09:01 -04:00
parent a327ab67a4
commit 4869729770

View File

@ -12,7 +12,7 @@ spec :: Spec
spec = parallel $ do
describe "difference" $ do
it "should return those elements of a not in b" $
Map.difference a b `shouldBe` Map.fromList [ ("a", 1) ]
Map.difference a b `shouldBe` Map.fromList [ ("a", 1) :: (Text, Integer) ]
it "is asymmetrical" $
Map.difference a b `shouldNotBe` Map.difference b a