Skip to content

Commit f05db3e

Browse files
committed
another
1 parent 855d23c commit f05db3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/testing/common/testingAdapter.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ suite('End to End Tests: test adapters', () => {
491491
assert.strictEqual(
492492
data.status,
493493
'error',
494-
`Expected status to be 'error', instead status is ${data.status}`,
494+
`Expected status to be 'error', instead status is ${JSON.stringify(data.status)}`,
495495
);
496496
// 2. Confirm no errors
497497
assert.ok(data.error, "Expected errors in 'error' field");
@@ -541,7 +541,7 @@ suite('End to End Tests: test adapters', () => {
541541
let failureMsg = '';
542542
resultResolver._resolveExecution = async (data, _token?) => {
543543
// do the following asserts for each time resolveExecution is called, should be called once per test.
544-
console.log(`unittest execution adapter seg fault error handling \n ${data}`);
544+
console.log(`unittest execution adapter seg fault error handling \n ${JSON.stringify(data)}`);
545545
callCount = callCount + 1;
546546
try {
547547
// 1. Check the status is "success"

0 commit comments

Comments
 (0)