Skip to content

Commit 2e61590

Browse files
committed
Fix test assertion: we do not warn on failure
1 parent 6c2d471 commit 2e61590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/test/src/test-integration-workflows-with-recorded-logs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,11 @@ test('unfinished signal handler with workflow cancellation', async (t) => {
211211
});
212212

213213
test('unfinished update handler with workflow failure', async (t) => {
214-
await new UnfinishedHandlersWithCancellationOrFailureTest(t, 'update', 'failure').testWarningIsIssued(true);
214+
await new UnfinishedHandlersWithCancellationOrFailureTest(t, 'update', 'failure').testWarningIsIssued(false);
215215
});
216216

217217
test('unfinished signal handler with workflow failure', async (t) => {
218-
await new UnfinishedHandlersWithCancellationOrFailureTest(t, 'signal', 'failure').testWarningIsIssued(true);
218+
await new UnfinishedHandlersWithCancellationOrFailureTest(t, 'signal', 'failure').testWarningIsIssued(false);
219219
});
220220

221221
class UnfinishedHandlersWithCancellationOrFailureTest {

0 commit comments

Comments
 (0)