From d2fe87062dde25e7fdadac061f6ca04541275e31 Mon Sep 17 00:00:00 2001 From: Ronan Arraes Jardim Chagas Date: Sat, 28 Oct 2023 17:25:33 -0300 Subject: [PATCH] Add more tests for assignments --- tests/indent/julia/assignment.jl | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tests/indent/julia/assignment.jl b/tests/indent/julia/assignment.jl index 798b889de..39b8e4e8d 100644 --- a/tests/indent/julia/assignment.jl +++ b/tests/indent/julia/assignment.jl @@ -1,11 +1,21 @@ my_variable = 1 + 2 - 3 * 4 / 5 % - 6 + 6 + ( + 1 + 2 + + 3 + ) + + 7 + 8 + + 9 function test() my_variable = 1 + 2 - 3 * 4 / 5 % - 6 + 6 + ( + 1 + 2 + + 3 + ) + + 7 + 8 + + 9 end