Skip to content

Commit

Permalink
Fix trap-test
Browse files Browse the repository at this point in the history
  • Loading branch information
jameysharp committed Aug 8, 2023
1 parent cddeea7 commit b1dfe8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/tests/trap-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub type TestResult = Result<(), Error>;
#[tokio::test(flavor = "multi_thread")]
async fn fatal_error_traps() -> TestResult {
let module_path = format!("{RUST_FIXTURE_PATH}/response.wasm");
let ctx = ExecuteCtx::new(module_path, ProfilingStrategy::None, HashSet::new())?;
let ctx = ExecuteCtx::new(module_path, ProfilingStrategy::None, HashSet::new(), None)?;
let req = Request::get("http://127.0.0.1:7676/").body(Body::from(""))?;
let resp = ctx
.handle_request_with_runtime_error(req, "127.0.0.1".parse().unwrap())
Expand Down

0 comments on commit b1dfe8f

Please sign in to comment.