From 1c57866a6ca03cd6e68924ee4d838554904dd311 Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Thu, 14 Nov 2013 21:21:27 +0100 Subject: [PATCH] test-ob: correct expected default header arguments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * 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. --- testing/lisp/test-ob.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el index e7f06455b..2f6cf6d55 100644 --- a/testing/lisp/test-ob.el +++ b/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 () -- 2.11.4.GIT