Skip to content

Commit 9bddef5

Browse files
committed
Updated messagepack_failure and raw_roundtrip tests to expect structured JSON response format instead of raw output, update echo.trampolined
1 parent 0a31586 commit 9bddef5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
-20 KB
Binary file not shown.

tests/integration_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ mod tests {
393393
.expect("Failed waiting for output");
394394

395395
cmd.assert().success();
396-
cmd.assert().stdout(contains("null"));
396+
cmd.assert().stdout(contains("\"output\": {}"));
397397

398398
Ok(())
399399
}
@@ -419,7 +419,7 @@ mod tests {
419419

420420
child.wait_with_output()?;
421421
cmd.assert().success();
422-
cmd.assert().stdout(contains("7b 7d"));
422+
cmd.assert().stdout(contains("\"output\": {}"));
423423

424424
Ok(())
425425
}

0 commit comments

Comments
 (0)