summaryrefslogtreecommitdiffstats
path: root/0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch
diff options
context:
space:
mode:
Diffstat (limited to '0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch')
-rw-r--r--0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch b/0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch
new file mode 100644
index 0000000..9c06cfa
--- /dev/null
+++ b/0000-Fix-a-test-to-catch-TypeError-instead-of-Exception.patch
@@ -0,0 +1,29 @@
+From ca430b3bff35f5fd7878a421b761fb6a7e408d75 Mon Sep 17 00:00:00 2001
+From: Randy Barlow <randy@electronsweatshop.com>
+Date: Sat, 14 Jan 2017 23:55:50 -0500
+Subject: [PATCH] Fix a test to catch TypeError instead of Exception.
+
+In PHP 7, TypeError is no longer an Exception but is an Error
+instead. This commit adjusts a test case to catch TypeError instead
+of Exception.
+
+Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
+---
+ tests/Evenement/Tests/EventEmitterTest.php | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/tests/Evenement/Tests/EventEmitterTest.php b/tests/Evenement/Tests/EventEmitterTest.php
+index 7eeaa3d..64c5ffc 100644
+--- a/tests/Evenement/Tests/EventEmitterTest.php
++++ b/tests/Evenement/Tests/EventEmitterTest.php
+@@ -44,6 +44,7 @@ class EventEmitterTest extends \PHPUnit_Framework_TestCase
+ $this->emitter->on('foo', 'not a callable');
+ $this->fail();
+ } catch (\Exception $e) {
++ } catch (\TypeError $e) {
+ }
+ }
+
+--
+2.11.0
+