Fix test formatting.

This commit is contained in:
Stephen Chung
2021-03-27 18:08:34 +08:00
parent 47588f9784
commit ea970631ff
10 changed files with 45 additions and 45 deletions

View File

@@ -20,7 +20,7 @@ fn test_if() -> Result<(), Box<EvalAltResult>> {
else if false { 77 }
else if false { 88 }
else { 44 }
"
"
)?,
44
);
@@ -38,7 +38,7 @@ fn test_if_expr() -> Result<(), Box<EvalAltResult>> {
let x = 42;
let y = 1 + if x > 40 { 100 } else { 0 } / x;
y
"
"
)?,
3
);