emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/phps-mode d5d80017bc 104/212: Passed indent tests for c


From: Christian Johansson
Subject: [elpa] externals/phps-mode d5d80017bc 104/212: Passed indent tests for concatenated string
Date: Wed, 26 Jan 2022 01:51:06 -0500 (EST)

branch: externals/phps-mode
commit d5d80017bc4a1cfea016b81cbde23a1a7aa25257
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@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")
 
   )



reply via email to

[Prev in Thread] Current Thread [Next in Thread]