Skip to content

Commit

Permalink
Use @=? instead of assertEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
nurpax committed Jan 6, 2013
1 parent 57a6bcd commit 3667478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ testStatementSql TestEnv{..} = TestCase $ do
let q1 = "SELECT 1+1"
withStmt conn q1 $ \stmt -> do
Just (Direct.Utf8 sql1) <- Direct.statementSql stmt
assertEqual "statementText" (T.encodeUtf8 q1) sql1
sql1 @=? T.encodeUtf8 q1

testInterrupt :: TestEnv -> Test
testInterrupt TestEnv{..} = TestCase $
Expand Down

0 comments on commit 3667478

Please sign in to comment.