We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84bf691 + e0af69f commit cee4c78Copy full SHA for cee4c78
tests/HelpersTest.php
@@ -42,7 +42,8 @@ public function url_helper_returns_absolute_url()
42
public function resolve_path_does_not_strip_0s()
43
{
44
$path = 'path/to/assets/0/0/0.png';
45
+ $normalizedOutput = str_replace('\\', '/', resolvePath($path));
46
- $this->assertSame($path, resolvePath($path));
47
+ $this->assertSame($path, $normalizedOutput);
48
}
49
0 commit comments