Fix indentation in tests

* testing/lisp/test-org-src.el (test-org-src/basic):
(test-org-src/empty-block):
(test-org-src/blank-line-block):
(test-org-src/preserve-tabs): Fix indentation and tab issues.
This commit is contained in:
Nicolas Goaziou 2016-08-17 23:36:32 +02:00
parent ab92c2b39c
commit 8e51a88bf0
1 changed files with 21 additions and 21 deletions

View File

@ -104,12 +104,12 @@ blah
(should
(equal "
#+begin_src emacs-lisp
This is a tab: .
This is a tab:\t.
#+end_src"
(org-test-with-temp-text
"
#+begin_src emacs-lisp
<point>This is a tab: .
<point>This is a tab:\t.
#+end_src"
(let ((org-edit-src-content-indentation 2)
(org-src-preserve-indentation nil))
@ -120,12 +120,12 @@ blah
(should
(equal "
#+begin_src emacs-lisp
This is a tab: .
This is a tab:\t.
#+end_src"
(org-test-with-temp-text
"
#+begin_src emacs-lisp
<point>This is a tab: .
<point>This is a tab:\t.
#+end_src"
(let ((org-edit-src-content-indentation 2)
(org-src-preserve-indentation t))