We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fb7dc commit 5e257deCopy full SHA for 5e257de
tests/index.rs
@@ -607,7 +607,9 @@ async fn test_official_website_documentation() {
607
let app_data = make_app_data_for_official_website().await;
608
let resp = req_path_with_app_data("/component.sql?component=button", app_data)
609
.await
610
- .unwrap_or_else(|e| panic!("Failed to get response for /component.sql?component=button: {e}"));
+ .unwrap_or_else(|e| {
611
+ panic!("Failed to get response for /component.sql?component=button: {e}")
612
+ });
613
assert_eq!(resp.status(), http::StatusCode::OK);
614
let body = test::read_body(resp).await;
615
let body_str = String::from_utf8(body.to_vec()).unwrap();
0 commit comments