summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-09-21 13:31:38 -0600
committerEric Schulte <schulte.eric@gmail.com>2011-09-21 13:31:38 -0600
commit20e670946e6b5a83b7d92ecf68db84e731db5ffd (patch)
treebb702ab62bb2f903556589759f4bb098ba8f2706
parent12f0fb2d759ef5d2a8e21c0c8c64bd385bb6a84d (diff)
downloadorg-mode-20e670946e6b5a83b7d92ecf68db84e731db5ffd.tar.gz
fix leftover cruft in test-ob-R.el
-rw-r--r--testing/lisp/test-ob-R.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/lisp/test-ob-R.el b/testing/lisp/test-ob-R.el
index 57acdff..1fe63a5 100644
--- a/testing/lisp/test-ob-R.el
+++ b/testing/lisp/test-ob-R.el
@@ -1,4 +1,4 @@
-;;; test-ob-fortran.el --- tests for ob-fortran.el
+;;; test-ob-R.el --- tests for ob-R.el
;; Copyright (c) 2011 Eric Schulte
;; Authors: Eric Schulte
@@ -13,14 +13,14 @@
(require 'org-test)
(require 'org-test-ob-consts))
-(require 'ob-awk)
+(require 'ob-R)
(ert-deftest test-ob-R/simple-session ()
(org-test-with-temp-text
"#+begin_src R :session R\n paste(\"Yep!\")\n#+end_src\n"
(should (string= "Yep!" (org-babel-execute-src-block)))))
-(provide 'test-ob-fortran)
+(provide 'test-ob-R)
-;;; test-ob-fortran.el ends here
+;;; test-ob-R.el ends here