Skip to content

Commit d13bdeb

Browse files
committed
Use realpath
1 parent a8a9386 commit d13bdeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceProvider/Bindings/TwigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testTwigOptions()
2929

3030
// Make sure that twig.options sets the storage path automatically
3131
$this->assertEmpty($config['cache']);
32-
$this->assertEquals($options['cache'], realpath(__DIR__.'/../..').'/storage/framework/views/twig');
32+
$this->assertEquals(realpath($options['cache']), realpath(__DIR__.'/../..').'/storage/framework/views/twig');
3333

3434
// Make sure same config is returned
3535
$options['cache'] = null;

0 commit comments

Comments
 (0)