Remove unnecessary replace

This commit is contained in:
Nathan Sobo 2023-04-20 15:26:48 -06:00
parent 0bce80b6f8
commit 1b2e480e1e

View File

@ -1020,14 +1020,13 @@ mod test {
ˇ
ˇb
"
}
.replace("", " ");
};
for count in 1..=3 {
cx.assert_binding_matches_all([&count.to_string(), "shift-f", "b"], &test_case)
cx.assert_binding_matches_all([&count.to_string(), "shift-f", "b"], test_case)
.await;
cx.assert_binding_matches_all([&count.to_string(), "shift-t", "b"], &test_case)
cx.assert_binding_matches_all([&count.to_string(), "shift-t", "b"], test_case)
.await;
}
}