Przeglądaj źródła

Fix duplicated and incorrect test names

Ryan C. Thompson 7 lat temu
rodzic
commit
f2828d6757
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      tests/test-ido-completing-read+.el

+ 2 - 2
tests/test-ido-completing-read+.el

@@ -357,7 +357,7 @@ also accept a quoted list for the sake of convenience."
       (before-each
         (spy-on 'ido-completing-read :and-call-through))
 
-      (it "should not fall back if `current-input-method' is non-nil"
+      (it "should not fall back if `current-input-method' is nil"
         (expect
          (let ((current-input-method nil))
            (with-simulated-input "g RET"
@@ -365,7 +365,7 @@ also accept a quoted list for the sake of convenience."
            :to-equal "green"))
         (expect 'ido-completing-read :to-have-been-called))
 
-      (it "should not fall back if `current-input-method' is non-nil"
+      (it "should fall back if `current-input-method' is non-nil"
         (expect
          (let ((current-input-method 'ucs))
            (with-simulated-input "g RET"