File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ suite('End to End Tests: test adapters', () => {
485
485
resultResolver . _resolveExecution = async ( data , _token ?) => {
486
486
// do the following asserts for each time resolveExecution is called, should be called once per test.
487
487
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 ) } ` ) ;
489
489
try {
490
490
// 1. Check the status is "success"
491
491
assert . strictEqual (
@@ -541,7 +541,7 @@ suite('End to End Tests: test adapters', () => {
541
541
let failureMsg = '' ;
542
542
resultResolver . _resolveExecution = async ( data , _token ?) => {
543
543
// 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 ) } ` ) ;
545
545
callCount = callCount + 1 ;
546
546
try {
547
547
// 1. Check the status is "success"
You can’t perform that action at this time.
0 commit comments