Skip to content

Commit 061e65e

Browse files
committed
ios: fix lints
1 parent 85dd4a3 commit 061e65e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_ios.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod tests {
1818
#[ignore]
1919
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
2020
async fn test_ios() {
21-
let uri = format!("/{}", TEST_PLATFORM);
21+
let uri = format!("/{TEST_PLATFORM}");
2222
let ipv4 = get_ipv4_address();
2323

2424
let mut app_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
@@ -65,7 +65,7 @@ mod tests {
6565
.split('\n')
6666
.map(|s| {
6767
if s.starts_with("let SERVER_URL") {
68-
format!("let SERVER_URL = \"{}\"", url)
68+
format!("let SERVER_URL = \"{url}\"")
6969
} else {
7070
s.into()
7171
}

0 commit comments

Comments
 (0)