Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
abuchanan-airbyte committed Nov 12, 2024
1 parent c08346f commit 463fc6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/cmd/local/docker/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ func TestNewWithOptions_InitErr(t *testing.T) {
{
name: "darwin",
goos: "darwin",
expAttempts: 2, // darwin will attempt two different locations
expAttempts: 3,
},
{
name: "windows",
goos: "windows",
expAttempts: 1,
expAttempts: 2,
},
{
name: "linux",
goos: "linux",
expAttempts: 1,
expAttempts: 3,
},
}

Expand Down

0 comments on commit 463fc6a

Please sign in to comment.