Skip to content

Commit

Permalink
Replace dir separator for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Jun 14, 2018
1 parent 62049a5 commit 3a2f113
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testInvokeOverridesConfig()
{
$configFactory = new ConfigurationFactory(
[new Version3(__DIR__ . '/../../../../../data/xsd/phpdoc.xsd')],
new Uri(__DIR__ . '/../../../data/phpDocumentor3XML.xml')
new Uri(__DIR__ . str_replace('/', DIRECTORY_SEPARATOR, '/../../../data/phpDocumentor3XML.xml'))
);

$fixture = new Configure($configFactory);
Expand Down

0 comments on commit 3a2f113

Please sign in to comment.