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:
parent
ab92c2b39c
commit
8e51a88bf0
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue