summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Wahl <marcowahlsoft@gmail.com>2018-02-05 10:45:12 +0100
committerMarco Wahl <marcowahlsoft@gmail.com>2018-02-05 10:45:12 +0100
commit8554aa93a717e5906330af891e3ac896c1f77ef1 (patch)
tree226612df9b3648dedae34a611f75b26091e74e76
parent33cbd808507171deed0a0364efafc160727c8a6a (diff)
downloadorg-mode-8554aa93a717e5906330af891e3ac896c1f77ef1.tar.gz
test-ob: Fix test case
* testing/lisp/test-ob.el (test-ob/org-babel-remove-result--results-list): Removed the inner list. Expectation "- (quote (4 5))" did not match the result "- '(4 5)". I think this difference is not worth testing in this test.
-rw-r--r--testing/lisp/test-ob.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el
index bc065d3..a4a590d 100644
--- a/testing/lisp/test-ob.el
+++ b/testing/lisp/test-ob.el
@@ -1056,12 +1056,11 @@ replacement happens correctly."
(test-ob-verify-result-and-removed-result
"- 1
- 2
-- 3
-- (quote (4 5))"
+- 3"
"* org-babel-remove-result
#+begin_src emacs-lisp :results list
-'(1 2 3 '(4 5))
+'(1 2 3)
#+end_src
* next heading"))