From 857a3921afe267a47fce704c5da361d5e42a23e8 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 1 Oct 2012 19:00:14 +0200 Subject: [PATCH] testing/lisp/test-ob-lilypond.el: Use "w32" or "windows-nt" instead of "win32" --- testing/lisp/test-ob-lilypond.el | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/testing/lisp/test-ob-lilypond.el b/testing/lisp/test-ob-lilypond.el index 379ffd298..3e74a558d 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"))))