diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-13 14:19:14 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-09-13 20:42:46 +0200 |
commit | 449aae392b45842a30a4cf12e1a7ddd03c240e7f (patch) | |
tree | cf716cdec6c5f9d9812bdea1b0e0d9934f2ae5c6 /dev-lang | |
parent | app-emulation/xen-tools: remove unused patch (diff) | |
download | gentoo-449aae392b45842a30a4cf12e1a7ddd03c240e7f.tar.gz gentoo-449aae392b45842a30a4cf12e1a7ddd03c240e7f.tar.bz2 gentoo-449aae392b45842a30a4cf12e1a7ddd03c240e7f.zip |
dev-lang/elixir: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32750
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/elixir/files/elixir-1.11.4-fix-elixir-test.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-lang/elixir/files/elixir-1.11.4-fix-elixir-test.patch b/dev-lang/elixir/files/elixir-1.11.4-fix-elixir-test.patch deleted file mode 100644 index 6b4dd0c3939b..000000000000 --- a/dev-lang/elixir/files/elixir-1.11.4-fix-elixir-test.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 3e88b1f336f843378790802bd486f6793b7ef872 Mon Sep 17 00:00:00 2001 -From: Jan Smutny <js@excello.cz> -Date: Thu, 14 Oct 2021 16:14:55 +0200 -Subject: [PATCH] Fix elixir test assertion for erlang >=OTP-24.1 - ---- - lib/elixir/test/elixir/exception_test.exs | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/lib/elixir/test/elixir/exception_test.exs b/lib/elixir/test/elixir/exception_test.exs -index df9d46bbc..ae08d5185 100644 ---- a/lib/elixir/test/elixir/exception_test.exs -+++ b/lib/elixir/test/elixir/exception_test.exs -@@ -446,11 +446,12 @@ test "annotates undefined function error with suggestions" do - * min/1 - """ - -- assert blame_message(:erlang, & &1.gt_cookie()) == """ -- function :erlang.gt_cookie/0 is undefined or private. Did you mean one of: -+ assert blame_message(:erlang, & &1.hal()) == """ -+ function :erlang.hal/0 is undefined or private. Did you mean one of: - -- * get_cookie/0 -- * set_cookie/2 -+ * halt/0 -+ * halt/1 -+ * halt/2 - """ - end - --- -2.31.1 - |