Skip to content

Commit

Permalink
tests: fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoM committed Apr 4, 2024
1 parent 4da42a0 commit 39b3bab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion database/postgresql/postgresql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,14 @@ func (suite *DbTestSuite) SetupTest() {
WithURL("postgres://user:password@localhost:6433/juno?sslmode=disable&search_path=public")

// Build the database
dbCtx := database.NewContext(dbCfg, codec, logging.DefaultLogger(), types.DefaultAddressParser())
dbCtx := database.NewContext(
dbCfg,
codec,
logging.DefaultLogger(),
types.DefaultAddressParser(),
types.DefaultTransactionFilter(),
types.DefaultMessageFilter(),
)
db, err := postgres.Builder(dbCtx)
suite.Require().NoError(err)

Expand Down

0 comments on commit 39b3bab

Please sign in to comment.