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.
This commit is contained in:
Marco Wahl 2018-02-05 10:45:12 +01:00
parent 33cbd80850
commit 8554aa93a7
1 changed files with 2 additions and 3 deletions

View File

@ -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"))