aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch')
-rw-r--r--community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch b/community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch
deleted file mode 100644
index afc8c14929d..00000000000
--- a/community/ruby-rmagick/RSpec-Remove-MPEG-format-because-it-was-renamed.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 2dff3ba3417cd8d733e4e065bbaedc38cb74ea31 Mon Sep 17 00:00:00 2001
-From: Watson <watson1978@gmail.com>
-Date: Sun, 4 Oct 2020 18:30:46 +0900
-Subject: [PATCH] RSpec: Remove MPEG format because it was renamed at 6.9.11-31
- and 7.0.10-31 (#1238)
-
-See: https://github.com/rmagick/rmagick/pull/1231#issuecomment-702759185
----
- spec/rmagick/image/format_spec.rb | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/spec/rmagick/image/format_spec.rb b/spec/rmagick/image/format_spec.rb
-index 118968e55..c385569a2 100644
---- a/spec/rmagick/image/format_spec.rb
-+++ b/spec/rmagick/image/format_spec.rb
-@@ -8,7 +8,6 @@
- expect { image.format = 'JPG' }.not_to raise_error
- expect { image.format = 'TIFF' }.not_to raise_error
- expect { image.format = 'MIFF' }.not_to raise_error
-- expect { image.format = 'MPEG' }.not_to raise_error
- v = $VERBOSE
- $VERBOSE = nil
- expect { image.format = 'shit' }.to raise_error(ArgumentError)