Skip to content

Commit 7d34fe5

Browse files
autofix-ci[bot]AlemTuzlak
authored andcommitted
ci: apply automated fixes
1 parent 5927084 commit 7d34fe5

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

testing/e2e/tests/tools-test/race-conditions.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@ test.describe('Race Condition Tests', () => {
294294
() => {
295295
const el = document.querySelector('#test-metadata')
296296
return (
297-
parseInt(el?.getAttribute('data-execution-complete-count') || '0') >= 2
297+
parseInt(el?.getAttribute('data-execution-complete-count') || '0') >=
298+
2
298299
)
299300
},
300301
{ timeout: 10000 },

testing/e2e/tests/tools-test/server-client-sequence.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ test.describe('Server-Client Sequence E2E Tests', () => {
6464
() => {
6565
const el = document.querySelector('#test-metadata')
6666
return (
67-
parseInt(el?.getAttribute('data-execution-complete-count') || '0') >= 2
67+
parseInt(el?.getAttribute('data-execution-complete-count') || '0') >=
68+
2
6869
)
6970
},
7071
{ timeout: 10000 },

0 commit comments

Comments
 (0)