We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 723afa0 commit f3bb9b4Copy full SHA for f3bb9b4
tests/JsonTest.php
@@ -83,7 +83,7 @@ public function constructorShouldThrowExceptionIfPathIsWrong(): void
83
{
84
$this->expectException(CreateDirectoryException::class);
85
86
- new Json(__DIR__ . '/foo:/filename.json');
+ new Json('/foo:/filename.json');
87
}
88
89
/**
@@ -94,7 +94,7 @@ public function constructorShouldThrowExceptionIfFilenameIsWrong(): void
94
95
$this->expectException(CreateFileException::class);
96
97
- new Json(__DIR__ . '/file:name.json');
+ new Json('/file:name.json');
98
99
100
0 commit comments