branch: externals/phps-mode commit d5d80017bc4a1cfea016b81cbde23a1a7aa25257 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Passed indent tests for concatenated string --- test/phps-mode-test-indent.el | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/test/phps-mode-test-indent.el b/test/phps-mode-test-indent.el index 5a0e2d1dad..c658387575 100644 --- a/test/phps-mode-test-indent.el +++ b/test/phps-mode-test-indent.el @@ -371,14 +371,6 @@ "<?php\n$var = 'A line' .\n 'more text here' .\n 'even more text' .\n 'last line here';\necho 'was here';" "Concatenated single-quoted-string multiple-lines in assignment #6") - (phps-mode-test-indent--should-equal - "<?php\n$var =\n 'A line' \n . 'more text here'\n . 'last line here';\necho 'was here';" - "Concatenated single-quoted-string multiple-lines in assignment #7") - - (phps-mode-test-indent--should-equal - "<?php\n$var =\n 'A line' .\n 'more text here' .\n 'even more text' .\n 'last line here';\necho 'was here';" - "Concatenated single-quoted-string multiple-lines in assignment #8") - (phps-mode-test-indent--should-equal "<?php\n$var .=\n 'A line';\necho 'was here';" "Concatenated equal single-quoted-string on multiple-lines in assignment") @@ -396,7 +388,7 @@ "Multi-line HEREDOC string in assignment") (phps-mode-test-indent--should-equal - "<?php\n$var =\n 500 .\n \"200\" .\n 100.0 .\n '200' .\n $this->getTail()\n ->getBottom();" + "<?php\n$var = 500 .\n \"200\" .\n 100.0 .\n '200' .\n $this->getTail()\n ->getBottom();" "Multi-line assignments with string concatenation and object-method chaining") )