From b232ee666313dc4462d1fad4779edda23de7b94e Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 18 Aug 2021 14:25:35 +0200 Subject: [PATCH] Fix test --- tests/Composer/Test/Repository/RepositoryManagerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/Repository/RepositoryManagerTest.php b/tests/Composer/Test/Repository/RepositoryManagerTest.php index 516e992d3..c70e395f1 100644 --- a/tests/Composer/Test/Repository/RepositoryManagerTest.php +++ b/tests/Composer/Test/Repository/RepositoryManagerTest.php @@ -97,7 +97,7 @@ class RepositoryManagerTest extends TestCase array('git', array('url' => 'http://github.com/foo/bar')), array('git', array('url' => 'git@example.org:foo/bar.git')), array('svn', array('url' => 'svn://example.org/foo/bar')), - array('pear', array('url' => 'http://pear.example.org/foo'), 'RuntimeException'), + array('pear', array('url' => 'http://pear.example.org/foo'), 'InvalidArgumentException'), array('package', array('package' => array())), array('invalid', array(), 'InvalidArgumentException'), );