Skip to content

Commit 4c61cf8

Browse files
Merge branch '2.3' into 2.7
* 2.3: [appveyor] Fix failure reporting
2 parents dd940c8 + f96454b commit 4c61cf8

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
@@ -285,12 +285,12 @@ public function testFallbackCatalogueResources()
285285

286286
$resources = $translator->getCatalogue('en')->getResources();
287287
$this->assertCount(1, $resources);
288-
$this->assertContains( __DIR__.'/fixtures/resources.yml', $resources);
288+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'resources.yml', $resources);
289289

290290
$resources = $translator->getCatalogue('en_GB')->getResources();
291291
$this->assertCount(2, $resources);
292-
$this->assertContains( __DIR__.'/fixtures/empty.yml', $resources);
293-
$this->assertContains( __DIR__.'/fixtures/resources.yml', $resources);
292+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'empty.yml', $resources);
293+
$this->assertContains( __DIR__.DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'resources.yml', $resources);
294294
}
295295

296296
/**

0 commit comments

Comments
 (0)