branch: elpa/pacmacs
commit 429294ea94048655348b95f0a7854536d5b8cda1
Author: rexim <[email protected]>
Commit: rexim <[email protected]>

    Fix render-score-table UT (#134)
---
 test/pacmacs-score-test.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/test/pacmacs-score-test.el b/test/pacmacs-score-test.el
index e22426e26b..c08aee3e10 100644
--- a/test/pacmacs-score-test.el
+++ b/test/pacmacs-score-test.el
@@ -15,12 +15,12 @@
                        ("hello" . 30)
                        ("world" . 20)
                        ("bar" . 10)))
-        (expected-string (concat "Best Scores:\n"
-                                 "------------\n"
-                                 "foo   40\n"
-                                 "hello 30\n"
-                                 "world 20\n"
-                                 "bar   10\n")))
+        (expected-string (concat ;"Best Scores:\n"
+                                 ;"------------\n"
+                                 "foo      40\n"
+                                 "hello    30\n"
+                                 "world    20\n"
+                                 "bar      10\n")))
     (with-temp-buffer
       (pacmacs--render-score-table input-table)
       (should (equal expected-string

Reply via email to