Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4121f47 + d651fb5 commit 3ebcc28Copy full SHA for 3ebcc28
src/Symfony/Component/Asset/Tests/VersionStrategy/JsonManifestVersionStrategyTest.php
@@ -27,14 +27,14 @@ public function testApplyVersion()
27
{
28
$strategy = $this->createStrategy('manifest-valid.json');
29
30
- $this->assertSame('css/styles.555def.css', $strategy->getVersion('css/styles.css'));
+ $this->assertSame('css/styles.555def.css', $strategy->applyVersion('css/styles.css'));
31
}
32
33
public function testApplyVersionWhenKeyDoesNotExistInManifest()
34
35
36
37
- $this->assertSame('css/other.css', $strategy->getVersion('css/other.css'));
+ $this->assertSame('css/other.css', $strategy->applyVersion('css/other.css'));
38
39
40
public function testMissingManifestFileThrowsException()
0 commit comments