summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 16be10900..3618c2e77 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -3814,7 +3814,7 @@ async fn inspector_does_not_hang() {
for i in 0..128u32 {
let request_id = i + 10;
// Expect the number {i} on stdout.
- let s = format!("{}", i);
+ let s = i.to_string();
assert_eq!(stdout_lines.next().unwrap(), s);
// Expect hitting the `debugger` statement.
let s = r#"{"method":"Debugger.paused","#;