Skip to content

Commit a499c71

Browse files
committed
Don't fail a test due to white space on older Emacs
1 parent 0f90d5c commit a499c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jupyter-test.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2583,7 +2583,7 @@ print(\"foo\", flush=True)
25832583
(goto-char (org-babel-where-is-src-block-result))
25842584
(let ((result (org-element-context)))
25852585
(should (eq (org-element-type result) 'fixed-width))
2586-
(should (equal (org-element-property :value result) "Hello")))))
2586+
(should (equal (string-trim (org-element-property :value result)) "Hello")))))
25872587

25882588
(ert-deftest jupyter-org-font-lock-ansi-escapes ()
25892589
:tags '(org)

0 commit comments

Comments
 (0)