Skip to content

Commit

Permalink
chore: require no error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 25, 2024
1 parent f381720 commit 18df9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func TestWithHostPortAccess(t *testing.T) {
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
opt := testcontainers.WithHostPortAccess(tc.hostPorts...)
opt.Customize(tc.req)
require.NoError(t, opt.Customize(tc.req))
require.Equal(t, tc.expect, tc.req.HostAccessPorts)
})
}
Expand Down

0 comments on commit 18df9d0

Please sign in to comment.