Browse Source

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.
Achim Gratz 11 years ago
parent
commit
1c57866a6c
1 changed files with 4 additions and 1 deletions
  1. 4 1
      testing/lisp/test-ob.el

+ 4 - 1
testing/lisp/test-ob.el

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