aboutsummaryrefslogtreecommitdiff
path: root/crates/libeditor/tests
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-23 19:38:25 +0100
committerAleksey Kladov <[email protected]>2018-08-23 19:38:25 +0100
commit18918769baf49acc4067eabdc0c3a0a98224d23f (patch)
tree5fd8881f035ef6177feb272d6984b38f4325ecfe /crates/libeditor/tests
parent6dcf87fb5f17393028a031b00a562ea8b74267ca (diff)
Smarter join lines
Diffstat (limited to 'crates/libeditor/tests')
-rw-r--r--crates/libeditor/tests/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/libeditor/tests/test.rs b/crates/libeditor/tests/test.rs
index 6aa260a86..e5088ad27 100644
--- a/crates/libeditor/tests/test.rs
+++ b/crates/libeditor/tests/test.rs
@@ -195,7 +195,7 @@ fn foo() {
195} 195}
196", r" 196", r"
197fn foo() { 197fn foo() {
198 <|>foo(1, ) 198 <|>foo(1)
199} 199}
200"); 200");
201} 201}
@@ -221,7 +221,7 @@ fn foo() {
221} 221}
222", r" 222", r"
223fn foo() { 223fn foo() {
224 foo(1, 2, 3, ) 224 foo(1, 2, 3)
225} 225}
226"); 226");
227} 227}