Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed May 29, 2023
1 parent eac3c10 commit de760fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/operations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func TestEscapeColumns(t *testing.T) {
t.Skip(`PG_DSN not set, please specify PG_DSN to run this test, example: PG_DSN="psql://dev-node:insecure-change-me-in-prod@localhost:5432/dev-node?enable_incremental_sort=off&sslmode=disable"`)
}

dbLoader, err := NewLoader(dsn, 0, zlog, tracer)
dbLoader, err := NewLoader(dsn, 0, OnModuleHashMismatchIgnore, zlog, tracer)
require.NoError(t, err)

tx, err := dbLoader.DB.Begin()
Expand Down Expand Up @@ -69,7 +69,7 @@ func TestEscapeValues(t *testing.T) {
t.Skip(`PG_DSN not set, please specify PG_DSN to run this test, example: PG_DSN="psql://dev-node:insecure-change-me-in-prod@localhost:5432/dev-node?enable_incremental_sort=off&sslmode=disable"`)
}

dbLoader, err := NewLoader(dsn, 0, zlog, tracer)
dbLoader, err := NewLoader(dsn, 0, OnModuleHashMismatchIgnore, zlog, tracer)
require.NoError(t, err)

tx, err := dbLoader.DB.Begin()
Expand Down

0 comments on commit de760fa

Please sign in to comment.