Skip to content

Commit f96454b

Browse files
[appveyor] Fix failure reporting
1 parent 9da5700 commit f96454b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/TranslatorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,12 @@ public function testFallbackCatalogueResources()
255255

256256
$resources = $catalogues['en']->getResources();
257257
$this->assertCount(1, $resources);
258-
$this->assertContains( __DIR__.'/fixtures/resources.yml', $resources);
258+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'resources.yml', $resources);
259259

260260
$resources = $catalogues['en_GB']->getResources();
261261
$this->assertCount(2, $resources);
262-
$this->assertContains( __DIR__.'/fixtures/empty.yml', $resources);
263-
$this->assertContains( __DIR__.'/fixtures/resources.yml', $resources);
262+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'empty.yml', $resources);
263+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'resources.yml', $resources);
264264
}
265265

266266
/**

0 commit comments

Comments
 (0)