test-ob: correct expected default header arguments

* testing/lisp/test-ob.el: The default header arguments have added
  '(hlines . yes)´ in commit c67e3cda15, also add them to the test so
  that the two are consistent again.
This commit is contained in:
Achim Gratz 2013-11-14 21:21:27 +01:00
parent 6c585439cd
commit 1c57866a6c
1 changed files with 4 additions and 1 deletions

View File

@ -99,7 +99,10 @@
(ert-deftest test-org-babel/default-inline-header-args ()
(should(equal
'((:session . "none") (:results . "replace") (:exports . "results"))
'((:session . "none")
(:results . "replace")
(:exports . "results")
(:hlines . "yes"))
org-babel-default-inline-header-args)))
(ert-deftest ob-test/org-babel-combine-header-arg-lists ()