Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / psy / psysh / test / ConsoleColorFactoryTest.php
similarity index 84%
rename from vendor/psy/psysh/test/Psy/Test/ConsoleColorFactoryTest.php
rename to vendor/psy/psysh/test/ConsoleColorFactoryTest.php
index 3da13c7b7c9238f81a13877fc2fbfb66a79426fd..d58a48d3699f068895e31c53b73106bc81152859 100644 (file)
@@ -3,7 +3,7 @@
 /*
  * This file is part of Psy Shell.
  *
- * (c) 2012-2017 Justin Hileman
+ * (c) 2012-2018 Justin Hileman
  *
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
@@ -24,7 +24,7 @@ class ConsoleColorFactoryTest extends \PHPUnit\Framework\TestCase
         $themes    = $colors->getThemes();
 
         $this->assertFalse($colors->isStyleForced());
-        $this->assertEquals(array('blue'), $themes['line_number']);
+        $this->assertSame(['blue'], $themes['line_number']);
     }
 
     public function testGetConsoleColorForced()
@@ -35,7 +35,7 @@ class ConsoleColorFactoryTest extends \PHPUnit\Framework\TestCase
         $themes    = $colors->getThemes();
 
         $this->assertTrue($colors->isStyleForced());
-        $this->assertEquals(array('blue'), $themes['line_number']);
+        $this->assertSame(['blue'], $themes['line_number']);
     }
 
     public function testGetConsoleColorDisabled()
@@ -46,6 +46,6 @@ class ConsoleColorFactoryTest extends \PHPUnit\Framework\TestCase
         $themes    = $colors->getThemes();
 
         $this->assertFalse($colors->isStyleForced());
-        $this->assertEquals(array('none'), $themes['line_number']);
+        $this->assertSame(['none'], $themes['line_number']);
     }
 }