24 lines
909 B
Diff
24 lines
909 B
Diff
From 0d6d7b630cf5971f2a2e3d27a50977d76ddbb9af Mon Sep 17 00:00:00 2001
|
|
From: Pavel Valena <pvalena@redhat.com>
|
|
Date: Tue, 5 Jun 2018 18:37:50 +0200
|
|
Subject: [PATCH] Fix test: match new `identify` error message
|
|
|
|
[identify](https://linux.die.net/man/1/identify) changed output.
|
|
---
|
|
spec/lib/mini_magick/shell_spec.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/spec/lib/mini_magick/shell_spec.rb b/spec/lib/mini_magick/shell_spec.rb
|
|
index cb50a51..1389c18 100644
|
|
--- a/spec/lib/mini_magick/shell_spec.rb
|
|
+++ b/spec/lib/mini_magick/shell_spec.rb
|
|
@@ -51,7 +51,7 @@
|
|
stdout, stderr, status = subject.execute(%W[identify foo])
|
|
|
|
expect(stdout).to eq ""
|
|
- expect(stderr).to match("unable to open image 'foo'")
|
|
+ expect(stderr).to match(/identify: unable to open image `foo': No such file or directory/)
|
|
expect(status).to eq 1
|
|
end
|
|
|