You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let path_result = format!("tests/js/work/{}/result.txt", test_set);
47
-
let path_writer = format!("tests/js/work/{}/writer", test_set);
48
-
let path_reader = format!("tests/js/work/{}/reader", test_set);
46
+
let path_result = format!("tests/js/work/{test_set}/result.txt");
47
+
let path_writer = format!("tests/js/work/{test_set}/writer");
48
+
let path_reader = format!("tests/js/work/{test_set}/reader");
49
49
create_dir_all(&path_writer).expect("Unable to create work writer directory");
50
50
create_dir_all(&path_reader).expect("Unable to create work reader directory");
51
51
(path_result, path_writer, path_reader)
@@ -100,13 +100,7 @@ impl JavascriptServer {
100
100
assert_eq!(
101
101
Some(0),
102
102
code,
103
-
"node server did not exit successfully, is_writer={}, port={}, data_count={}, data_size={}, data_char={}, test_set={}",
104
-
is_writer,
105
-
port,
106
-
data_count,
107
-
data_size,
108
-
data_char,
109
-
test_set,
103
+
"node server did not exit successfully, is_writer={is_writer}, port={port}, data_count={data_count}, data_size={data_size}, data_char={data_char}, test_set={test_set}",
0 commit comments