diff --git a/tests/Composer/Test/ConfigTest.php b/tests/Composer/Test/ConfigTest.php index 3410d92a1..22ac59830 100644 --- a/tests/Composer/Test/ConfigTest.php +++ b/tests/Composer/Test/ConfigTest.php @@ -115,6 +115,6 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $config->merge(array('config' => array('github-protocols' => array('https', 'http')))); $config->merge(array('config' => array('github-protocols' => array('http')))); - $this->assertEquals(array('http'), $config->get('github-oauth')); + $this->assertEquals(array('http'), $config->get('github-protocols')); } }