Skip to content

Commit

Permalink
fix: lint nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Zygimantass committed Jan 15, 2025
1 parent 2cc95e5 commit f1faed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/provider/docker/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func TestRestoreProvider(t *testing.T) {
serialized, err := p1.SerializeProvider(ctx)
require.NoError(t, err)

p2, err := docker.RestoreProvider(ctx, serialized)
p2, err := docker.RestoreProvider(ctx, logger, serialized)
require.NoError(t, err)

state2 := p2.GetState()
Expand Down Expand Up @@ -265,7 +265,7 @@ func TestProviderSerialization(t *testing.T) {
serialized, err := p1.SerializeProvider(ctx)
require.NoError(t, err)

p2, err := docker.RestoreProvider(ctx, serialized)
p2, err := docker.RestoreProvider(ctx, logger, serialized)
require.NoError(t, err)

state2 := p2.GetState()
Expand Down

0 comments on commit f1faed9

Please sign in to comment.