Skip to content

Commit 1c54151

Browse files
committed
refactor(tests): Remove redundant comments in session isolation tests
Signed-off-by: Eden Reich <eden.reich@gmail.com>
1 parent 7862700 commit 1c54151

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internal/playwright/session_isolation_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ func TestMultiTenantSessionIsolation(t *testing.T) {
3333
assert.NoError(t, err)
3434
}()
3535

36-
// Create contexts with different task IDs to simulate multi-tenant isolation
3736
ctx1 := context.WithValue(context.Background(), server.TaskContextKey, &types.Task{ID: "task-1"})
3837
ctx2 := context.WithValue(context.Background(), server.TaskContextKey, &types.Task{ID: "task-2"})
3938
ctx3 := context.WithValue(context.Background(), server.TaskContextKey, &types.Task{ID: "task-3"})
@@ -92,7 +91,6 @@ func TestSessionExpiration(t *testing.T) {
9291
assert.NoError(t, err)
9392
}()
9493

95-
// Create context with task ID
9694
ctx := context.WithValue(context.Background(), server.TaskContextKey, &types.Task{ID: "task-expiration-test"})
9795

9896
session, err := service.GetOrCreateTaskSession(ctx)

0 commit comments

Comments
 (0)