branch: scratch/editorconfig-cc
commit baa846c702bc6f659bbe6482d7dfe4e96f92636a
Author: 10sr <[email protected]>
Commit: Stefan Monnier <[email protected]>
Remove unused tests
---
ert-tests/editorconfig-core.el | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/ert-tests/editorconfig-core.el b/ert-tests/editorconfig-core.el
index f85e2ba48e..a09d38b2f8 100644
--- a/ert-tests/editorconfig-core.el
+++ b/ert-tests/editorconfig-core.el
@@ -1,14 +1,5 @@
(require 'editorconfig-core)
-(ert-deftest test-editorconfig-core--remove-duplicate ()
- (should (equal (editorconfig-core--remove-duplicate '(("a" . 1) ("b" . 2)
("c" . 3) ("b" . 4)))
- '(("a" . 1) ("b" . 4) ("c" . 3))))
- (should (equal (editorconfig-core--remove-duplicate '(("a" . 1) ("b" . 2)
("c" . 3)))
- '(("a" . 1) ("b" . 2) ("c" . 3))))
- (should (equal (editorconfig-core--remove-duplicate nil)
- nil))
- )
-
(ert-deftest test-editorconfig-core--get-handles ()
(let* ((fixtures (concat default-directory