diff options
Diffstat (limited to 'crates/libeditor/tests')
-rw-r--r-- | crates/libeditor/tests/test.rs | 4 |
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" |
197 | fn foo() { | 197 | fn 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" |
223 | fn foo() { | 223 | fn foo() { |
224 | foo(1, 2, 3, ) | 224 | foo(1, 2, 3) |
225 | } | 225 | } |
226 | "); | 226 | "); |
227 | } | 227 | } |