Skip to content

Commit

Permalink
fix: update context creation
Browse files Browse the repository at this point in the history
Signed-off-by: Kumar Mallikarjuna <kumarmallikarjuna.work@gmail.com>
  • Loading branch information
kumar-mallikarjuna committed Jan 3, 2025
1 parent 83a41b3 commit 8d7cdf0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/test/expression_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ func buildTestStep(t *testing.T, testenv kubernetes.TestEnvironment) *Step {
}

func TestAssertExpressions(t *testing.T) {
ctx := context.WithTimeout(context.Background(), 2*time.Minute)
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute)
defer cancel()

testenv, err := kubernetes.StartTestEnvironment(false)
assert.NoError(t, err)

Expand Down

0 comments on commit 8d7cdf0

Please sign in to comment.