unwrap it

This commit is contained in:
Mackenzie Clark 2018-12-20 21:55:03 -08:00
parent 3783b923d1
commit 207c4d8d55

View File

@ -26,7 +26,7 @@ macro_rules! assert_emscripten_output {
$args,
)
.unwrap();
let output = capturer.end().0;
let output = capturer.end().unwrap().0;
let expected_output = include_str!($expected);
assert_eq!(output, expected_output);
}};