summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartyn Jago <martyn.jago@btinternet.com>2011-09-08 22:34:38 +0100
committerEric Schulte <schulte.eric@gmail.com>2011-09-09 14:31:06 -0600
commit8fb588d4d32258936d939151a3c65084ab4f0feb (patch)
tree482b5331e7eae8465991c05836779ae5a3754dac
parentbb0b9709ef84a747393eae74e009748255710447 (diff)
downloadorg-mode-8fb588d4d32258936d939151a3c65084ab4f0feb.tar.gz
* testing/lisp/test-ob.el: Fixed typo
-rw-r--r--testing/lisp/test-ob.el6
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 ()