From b50882db3a52287852ac5c348942c390e9e5c310 Mon Sep 17 00:00:00 2001 From: Moti Zilberman Date: Mon, 8 Feb 2016 15:52:40 +0200 Subject: [PATCH] [ci skip] Fix typo in InsertSpec --- test/Feature/InsertSpec.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Feature/InsertSpec.hs b/test/Feature/InsertSpec.hs index 3ca57e8ed..b42b25eec 100644 --- a/test/Feature/InsertSpec.hs +++ b/test/Feature/InsertSpec.hs @@ -130,7 +130,7 @@ spec struct c = beforeAll_ resetDb $ around (withApp cfgDefault struct c) $ do it "fails returning a 409 Conflict" $ post "/simple_pk" [json| { "k":"k1", "extra":"e1" } |] `shouldRespondWith` 409 - context "attempting to insert a row with confliting unique constraint" $ + context "attempting to insert a row with conflicting unique constraint" $ it "fails returning a 409 Conflict" $ post "/withUnique" [json| { "uni":"nodup", "extra":"e2" } |] `shouldRespondWith` 409