From a444094303e48cbb5f4027e83f8dcf60d240204b Mon Sep 17 00:00:00 2001 From: Martyn Jago Date: Thu, 8 Sep 2011 22:34:38 +0100 Subject: [PATCH] * testing/lisp/test-ob.el: Fixed typo --- testing/lisp/test-ob.el | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el index 9735bd8..1f04c5b 100644 --- a/testing/lisp/test-ob.el +++ b/testing/lisp/test-ob.el @@ -390,13 +390,13 @@ (should (string= (concat test-line " [[file:~/test-file]]") (buffer-substring-no-properties (point-min) (point-max))))))) -(ert-deftest test-org-babel/inline-src_blk-results-scaler () +(ert-deftest test-org-babel/inline-src_blk-results-scalar () (with-temp-buffer - (let ((test-line "src_emacs-lisp[ :results scaler ]{ \"x\" }")) + (let ((test-line "src_emacs-lisp[ :results scalar ]{ \"x\" }")) (insert test-line) (goto-char (point-min)) (org-ctrl-c-ctrl-c) - (should (string= (concat test-line " =x=") + (should (string= (concat test-line " =\"x\"=") (buffer-substring-no-properties (point-min) (point-max))))))) (ert-deftest test-org-babel/inline-src_blk-results-verbatim () -- 1.7.3.4