Skip to content

Commit

Permalink
test: fix warp integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
oddgrd committed Oct 19, 2022
1 parent b38d1c3 commit 946e3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/warp/hello-world/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ use warp::Reply;

#[shuttle_service::main]
async fn warp() -> shuttle_service::ShuttleWarp<(impl Reply,)> {
let route = warp::any().map(|| "Hello, World");
let route = warp::any().map(|| "Hello, World!");
Ok(route.boxed())
}

0 comments on commit 946e3ba

Please sign in to comment.