Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import error to use SessionError #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/Hasql/MigrationTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module Hasql.MigrationTest where

import Hasql.Session (run, QueryError)
import Hasql.Session (run, SessionError)
import Hasql.Connection
import qualified Hasql.Transaction as Tx
import qualified Hasql.Transaction.Sessions as Tx
Expand All @@ -23,7 +23,7 @@ import Hasql.Migration.Util (existsTable)
import Test.Hspec (Spec, describe, it,
shouldBe, runIO)

runTx :: Connection -> Tx.Transaction a -> IO (Either QueryError a)
runTx :: Connection -> Tx.Transaction a -> IO (Either SessionError a)
runTx con act = do
run (Tx.transaction Tx.ReadCommitted Tx.Write act) con

Expand Down