Skip to content

Commit 16309b0

Browse files
vkholoshenkoRoman Ganin
authored andcommitted
MAGETWO-33052: Fix backend admin.css minification
1 parent 2ed2246 commit 16309b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/unit/testsuite/Magento/Framework/View/Asset/Minified/ImmutablePathAssetTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testImmutableFilePath()
3434
$this->_asset->expects($this->once())->method('getContent')->will($this->returnValue('content'));
3535
$this->_adapter->expects($this->once())->method('minify')->with('content')->will($this->returnValue('mini'));
3636
$this->_staticViewDir->expects($this->once())->method('writeFile')->with($this->anything(), 'mini');
37-
$this->assertEquals('test/library.js', $this->_model->getFilePath());
38-
$this->assertEquals('http://example.com/test/library.js', $this->_model->getUrl());
37+
$this->assertEquals('test/admin.js', $this->_model->getFilePath());
38+
$this->assertEquals('http://example.com/test/admin.js', $this->_model->getUrl());
3939
}
4040
}

0 commit comments

Comments
 (0)