We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85dd4a3 commit 061e65eCopy full SHA for 061e65e
tests/test_ios.rs
@@ -18,7 +18,7 @@ mod tests {
18
#[ignore]
19
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
20
async fn test_ios() {
21
- let uri = format!("/{}", TEST_PLATFORM);
+ let uri = format!("/{TEST_PLATFORM}");
22
let ipv4 = get_ipv4_address();
23
24
let mut app_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
@@ -65,7 +65,7 @@ mod tests {
65
.split('\n')
66
.map(|s| {
67
if s.starts_with("let SERVER_URL") {
68
- format!("let SERVER_URL = \"{}\"", url)
+ format!("let SERVER_URL = \"{url}\"")
69
} else {
70
s.into()
71
}
0 commit comments