Skip to content

Commit 8dc30a6

Browse files
committed
fix
1 parent bb3677e commit 8dc30a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/cl_run.clas.abap

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ CLASS cl_run IMPLEMENTATION.
4040
ENDIF.
4141
ENDLOOP.
4242

43-
CONCATENATE LINES OF string_tab INTO result SEPARATED BY |\n|.
43+
DATA(newline) = |\n|.
44+
CONCATENATE LINES OF string_tab INTO result SEPARATED BY newline.
4445
ENDMETHOD.
4546

4647
ENDCLASS.

0 commit comments

Comments
 (0)