Skip to content

Commit 2aa9145

Browse files
fmt
1 parent 3245c3c commit 2aa9145

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/interpreter/function.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ fn test_trailing_comma_in_function_call() {
6868
fn test_trailing_comma_in_function_call_multiline() {
6969
// Multiline call with trailing comma
7070
assert_eq!(
71-
eval("function foo(a: string, b: string): string { return a + b; } foo(\n'hello',\n'world',\n)"),
71+
eval(
72+
"function foo(a: string, b: string): string { return a + b; } foo(\n'hello',\n'world',\n)"
73+
),
7274
JsValue::from("helloworld")
7375
);
7476

0 commit comments

Comments
 (0)