Skip to content

Commit 5481fa5

Browse files
committed
another
1 parent 855d23c commit 5481fa5

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
@@ -485,7 +485,7 @@ suite('End to End Tests: test adapters', () => {
485485
resultResolver._resolveExecution = async (data, _token?) => {
486486
// do the following asserts for each time resolveExecution is called, should be called once per test.
487487
callCount = callCount + 1;
488-
console.log(`unittest execution adapter seg fault error handling \n ${data}`);
488+
console.log(`unittest execution adapter seg fault error handling \n ${JSON.stringify(data)}`);
489489
try {
490490
// 1. Check the status is "success"
491491
assert.strictEqual(
@@ -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)