summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-10-22 10:34:59 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-10-22 10:46:55 +0200
commitfa0bb43a2f0c6d53d3f954211ee59ac71fc302fa (patch)
tree2593794b765353e6f054f2ba17db7ad231c323b9
parentsci-mathematics/cryptominisat: bump to 5.11.15 (diff)
downloadgentoo-fa0bb43a2f0c6d53d3f954211ee59ac71fc302fa.tar.gz
gentoo-fa0bb43a2f0c6d53d3f954211ee59ac71fc302fa.tar.bz2
gentoo-fa0bb43a2f0c6d53d3f954211ee59ac71fc302fa.zip
app-emacs/treemacs: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33452 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--app-emacs/treemacs/files/treemacs-3.0-tests.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/app-emacs/treemacs/files/treemacs-3.0-tests.patch b/app-emacs/treemacs/files/treemacs-3.0-tests.patch
deleted file mode 100644
index d7bc67dc3e54..000000000000
--- a/app-emacs/treemacs/files/treemacs-3.0-tests.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Disable bad tests.
-
---- a/test/treemacs-test.el
-+++ b/test/treemacs-test.el
-@@ -372,7 +372,7 @@
-
- (describe "treemacs--parent"
-
-- (it "Fails on nil input"
-+ (xit "Fails on nil input"
- (expect (treemacs--parent nil) :to-throw))
-
- (it "Returns nil when input is empty"
-@@ -393,14 +393,14 @@
- (it "Returns directory extension of extension sub-item node."
- (expect (treemacs--parent '("/test1" "a" "b")) :to-equal '("/test1" "a")))
-
-- (it "Returns directory of a directory extension node."
-+ (xit "Returns directory of a directory extension node."
- (expect (treemacs--parent '("/test1" "a")) :to-equal "/test1"))
-
-- (it "Returns project extension of a project sub-item node."
-+ (xit "Returns project extension of a project sub-item node."
- (let ((p (treemacs-project->create! :path "/A" :path-status 'local-readable)))
- (expect (treemacs--parent (list p "a" "b")) :to-equal (list p "a"))))
-
-- (it "Returns project of a project extension node."
-+ (xit "Returns project of a project extension node."
- (let ((p (treemacs-project->create! :path "/A" :path-status 'local-readable)))
- (expect (treemacs--parent (list p "a")) :to-equal "/A"))))
-