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 1d2fab6 commit 723afa0Copy full SHA for 723afa0
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(__DIR__ . '/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(__DIR__ . '/file:name.json');
98
99
100
0 commit comments