Jordi Boggiano před 12 roky
rodič
revize
6d2b4354f4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tests/Composer/Test/ConfigTest.php

+ 1 - 1
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'));
     }
 }