Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arybolovlev committed Jun 3, 2024
1 parent a0aaa61 commit 1198074
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workspace_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,11 @@ func TestWorkspacesList(t *testing.T) {
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
t.Cleanup(wTestCleanup)

rn, unappliedCleanup := createRunUnapplied(t, client, wTest)
t.Cleanup(unappliedCleanup)
rn, appliedCleanup := createRunApply(t, client, wTest)
t.Cleanup(appliedCleanup)

wl, err := client.Workspaces.List(ctx, orgTest.Name, &WorkspaceListOptions{
CurrentRunStatus: string(RunPlanned),
CurrentRunStatus: string(RunApplied),
})

require.NoError(t, err)
Expand Down

0 comments on commit 1198074

Please sign in to comment.