From 6d2b4354f4a1f2d511b7daa827b65561f20a374d Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 8 Dec 2012 21:51:52 +0100 Subject: [PATCH] Fix test --- tests/Composer/Test/ConfigTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')); } }