From 93d37833dc6d40e3fdbfc683fabb6734677e65bf Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 30 May 2013 15:28:38 +0200 Subject: [PATCH] Fix tests --- tests/Composer/Test/Util/StreamContextFactoryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Composer/Test/Util/StreamContextFactoryTest.php b/tests/Composer/Test/Util/StreamContextFactoryTest.php index c91c1959f..3fc51a8df 100644 --- a/tests/Composer/Test/Util/StreamContextFactoryTest.php +++ b/tests/Composer/Test/Util/StreamContextFactoryTest.php @@ -126,9 +126,9 @@ class StreamContextFactoryTest extends \PHPUnit_Framework_TestCase )), $options); } else { try { - StreamContextFactory::getContext(); + StreamContextFactory::getContext('http://example.org'); $this->fail(); - } catch (\Exception $e) { + } catch (\RuntimeException $e) { $this->assertInstanceOf('RuntimeException', $e); } }