Skip to content

Commit 36631f0

Browse files
committed
Fixed failing test case from utility package
1 parent b761142 commit 36631f0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/contentstack-utilities/test/unit/summaryManager.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,7 @@ describe('SummaryManager', () => {
294294

295295
// Should show mixed results
296296
const mixedCall = logCalls.find(call =>
297-
call.args[0] && call.args[0].includes('completed with') &&
298-
call.args[0].includes('failed modules')
297+
call.args[0] && call.args[0].includes('completed with failures')
299298
);
300299
expect(mixedCall).to.not.be.undefined;
301300
});

0 commit comments

Comments
 (0)