Skip to content

Commit

Permalink
fix: bug in containers testing 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
kareemmahlees committed Apr 24, 2024
1 parent e90e538 commit c71bc22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/testHelpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func TestCreatePostgresContainer(t *testing.T) {

_, err := CreatePostgresContainer(ctx)

assert.Nil(t, err)
assert.Error(t, err)

})
}
Expand Down Expand Up @@ -75,7 +75,7 @@ func TestCreateMySQLContainer(t *testing.T) {

_, err := CreateMySQLContainer(ctx)

assert.Nil(t, err)
assert.Error(t, err)

})
}
Expand Down

0 comments on commit c71bc22

Please sign in to comment.