@@ -48,7 +48,7 @@ class ComposerTest extends \PHPUnit\Framework\TestCase
4848 /**
4949 * @var string
5050 */
51- private static $ magentoFrameworkLibaryName = 'magento/framework ' ;
51+ private static $ magentoFrameworkLibraryName = 'magento/framework ' ;
5252
5353 public static function setUpBeforeClass ()
5454 {
@@ -317,9 +317,9 @@ private function assertDependsOnPhp(\StdClass $json)
317317 private function assertDependsOnFramework (\StdClass $ json )
318318 {
319319 $ this ->assertObjectHasAttribute (
320- self ::$ magentoFrameworkLibaryName ,
320+ self ::$ magentoFrameworkLibraryName ,
321321 $ json ,
322- 'This component is expected to depend on ' . self ::$ magentoFrameworkLibaryName
322+ 'This component is expected to depend on ' . self ::$ magentoFrameworkLibraryName
323323 );
324324 }
325325
@@ -516,11 +516,11 @@ public function testConsistencyOfDeclarationsInComposerFiles()
516516 }
517517
518518 $ componentRegistrar = new ComponentRegistrar ();
519- $ magentoFrameworkLibaryDir =
520- $ componentRegistrar ->getPath (ComponentRegistrar::LIBRARY , self ::$ magentoFrameworkLibaryName );
519+ $ magentoFrameworkLibraryDir =
520+ $ componentRegistrar ->getPath (ComponentRegistrar::LIBRARY , self ::$ magentoFrameworkLibraryName );
521521 $ magentoFrameworkComposerFile =
522522 json_decode (
523- file_get_contents ($ magentoFrameworkLibaryDir . DIRECTORY_SEPARATOR . 'composer.json ' ),
523+ file_get_contents ($ magentoFrameworkLibraryDir . DIRECTORY_SEPARATOR . 'composer.json ' ),
524524 true
525525 );
526526
@@ -536,7 +536,7 @@ public function testConsistencyOfDeclarationsInComposerFiles()
536536 $ this ->assertEmpty (
537537 $ inconsistentDependencies ,
538538 'There is a discrepancy between the declared versions of the following modules in " '
539- . self ::$ magentoFrameworkLibaryName . '" and the root composer.json: '
539+ . self ::$ magentoFrameworkLibraryName . '" and the root composer.json: '
540540 . implode (', ' , $ inconsistentDependencies )
541541 );
542542 }
0 commit comments