Fix test after path changes

This commit is contained in:
Dennis Eichhorn 2019-02-15 19:45:32 +01:00
parent ea8a63b952
commit 187999ccfc

View File

@ -42,7 +42,7 @@ class HeadTest extends \PHPUnit\Framework\TestCase
$head->addAsset(AssetType::CSS, '/path/styles.css');
$head->addAsset(AssetType::JS, '/path/logic.js');
$head->addAsset(AssetType::JSLATE, 'path/late.js');
$head->addAsset(AssetType::JSLATE, '/path/late.js');
$head->setStyle('base', '#test .class { color: #000; }');
self::assertEquals(['base' => '#test .class { color: #000; }'], $head->getStyleAll());