summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-10-01 19:00:14 +0200
committerBastien Guerry <bzg@altern.org>2012-10-01 19:00:14 +0200
commit857a3921afe267a47fce704c5da361d5e42a23e8 (patch)
treee81eea0f01c3e1c8c952cefb2027ecf6798e0731
parentffdb6fb159b0a1ac4f32749d70c511e6f7e77148 (diff)
downloadorg-mode-857a3921afe267a47fce704c5da361d5e42a23e8.tar.gz
testing/lisp/test-ob-lilypond.el: Use "w32" or "windows-nt" instead of "win32"
-rw-r--r--testing/lisp/test-ob-lilypond.el30
1 files changed, 15 insertions, 15 deletions
diff --git a/testing/lisp/test-ob-lilypond.el b/testing/lisp/test-ob-lilypond.el
index 379ffd2..3e74a55 100644
--- a/testing/lisp/test-ob-lilypond.el
+++ b/testing/lisp/test-ob-lilypond.el
@@ -86,17 +86,17 @@
(should (boundp 'ly-nix-midi-path))
(should (stringp ly-nix-midi-path)))
-(ert-deftest ob-lilypond/ly-win32-ly-path ()
- (should (boundp 'ly-win32-ly-path))
- (should (stringp ly-win32-ly-path)))
+(ert-deftest ob-lilypond/ly-w32-ly-path ()
+ (should (boundp 'ly-w32-ly-path))
+ (should (stringp ly-w32-ly-path)))
-(ert-deftest ob-lilypond/ly-win32-pdf-path ()
- (should (boundp 'ly-win32-pdf-path))
- (should (stringp ly-win32-pdf-path)))
+(ert-deftest ob-lilypond/ly-w32-pdf-path ()
+ (should (boundp 'ly-w32-pdf-path))
+ (should (stringp ly-w32-pdf-path)))
-(ert-deftest ob-lilypond/ly-win32-midi-path ()
- (should (boundp 'ly-win32-midi-path))
- (should (stringp ly-win32-midi-path)))
+(ert-deftest ob-lilypond/ly-w32-midi-path ()
+ (should (boundp 'ly-w32-midi-path))
+ (should (stringp ly-w32-midi-path)))
(ert-deftest ob-lilypond/ly-gen-png ()
(should (boundp 'ly-gen-png)))
@@ -245,24 +245,24 @@
(ert-deftest ob-lilypond/ly-determine-ly-path ()
(should (equal ly-OSX-ly-path
(ly-determine-ly-path "darwin")))
- (should (equal ly-win32-ly-path
- (ly-determine-ly-path "win32")))
+ (should (equal ly-w32-ly-path
+ (ly-determine-ly-path "windows-nt")))
(should (equal ly-nix-ly-path
(ly-determine-ly-path "nix"))))
(ert-deftest ob-lilypond/ly-determine-pdf-path ()
(should (equal ly-OSX-pdf-path
(ly-determine-pdf-path "darwin")))
- (should (equal ly-win32-pdf-path
- (ly-determine-pdf-path "win32")))
+ (should (equal ly-w32-pdf-path
+ (ly-determine-pdf-path "windows-nt")))
(should (equal ly-nix-pdf-path
(ly-determine-pdf-path "nix"))))
(ert-deftest ob-lilypond/ly-determine-midi-path ()
(should (equal ly-OSX-midi-path
(ly-determine-midi-path "darwin")))
- (should (equal ly-win32-midi-path
- (ly-determine-midi-path "win32")))
+ (should (equal ly-w32-midi-path
+ (ly-determine-midi-path "windows-nt")))
(should (equal ly-nix-midi-path
(ly-determine-midi-path "nix"))))