fmt: fix test

pull/3648/head^2
Alexander Medvednikov 2020-02-21 22:56:44 +01:00
parent 15c288b444
commit 3c3ca1e61f
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ fn (f mut Fmt) stmt(node ast.Stmt) {
f.writeln('')
}
f.indent--
f.writeln('\n)\n')
f.writeln(')\n')
}
ast.ExprStmt {
f.expr(it.expr)