Skip to content

Commit

Permalink
test: debug failing test
Browse files Browse the repository at this point in the history
Signed-off-by: Russell Centanni <[email protected]>
  • Loading branch information
lizardruss committed May 14, 2024
1 parent 7ed991a commit 78c07ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/tests/sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ var _ = DevSpaceDescribe("sync", func() {
waitGroup.Wait()
})

ginkgo.It("devspace sync should work with initialSync:disabled", func() {
ginkgo.It("devspace sync should work with initialSync:disabled", func(ctx context.Context) {
tempDir, err := framework.CopyToTempDir("tests/sync/testdata/sync-initial-disabled")
framework.ExpectNoError(err)
defer framework.CleanupTempDir(initialDir, tempDir)
Expand All @@ -800,7 +800,7 @@ var _ = DevSpaceDescribe("sync", func() {
err = deployCmd.RunDefault(f)
framework.ExpectNoError(err)

cancelCtx, stop := context.WithCancel(context.Background())
cancelCtx, stop := context.WithCancel(ctx)
defer stop()

// sync command
Expand Down

0 comments on commit 78c07ad

Please sign in to comment.