Skip to content

Commit 5e257de

Browse files
committed
fmt
1 parent 68fb7dc commit 5e257de

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/index.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,9 @@ async fn test_official_website_documentation() {
607607
let app_data = make_app_data_for_official_website().await;
608608
let resp = req_path_with_app_data("/component.sql?component=button", app_data)
609609
.await
610-
.unwrap_or_else(|e| panic!("Failed to get response for /component.sql?component=button: {e}"));
610+
.unwrap_or_else(|e| {
611+
panic!("Failed to get response for /component.sql?component=button: {e}")
612+
});
611613
assert_eq!(resp.status(), http::StatusCode::OK);
612614
let body = test::read_body(resp).await;
613615
let body_str = String::from_utf8(body.to_vec()).unwrap();

0 commit comments

Comments
 (0)