We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 016fc16 commit 81a9325Copy full SHA for 81a9325
src/environmentd/tests/server.rs
@@ -2497,19 +2497,6 @@ fn test_internal_http_auth() {
2497
))
2498
.unwrap();
2499
2500
- let res = Client::new().post(url.clone()).json(&json).send().unwrap();
2501
-
2502
- tracing::info!("response: {res:?}");
2503
2504
- assert_eq!(
2505
- res.status(),
2506
- StatusCode::OK,
2507
- "{:?}",
2508
- res.json::<serde_json::Value>()
2509
- );
2510
- // defaults to mz_system
2511
- assert!(res.text().unwrap().to_string().contains("mz_system"));
2512
2513
let res = Client::new()
2514
.post(url.clone())
2515
.header("x-materialize-user", "mz_system")
0 commit comments