Skip to content

Commit 41b78ea

Browse files
authored
Merge pull request #19 from tattersoftware/test-properties
Test Property
2 parents 03e0a1a + b6d2e52 commit 41b78ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Test/PublishersTestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testPublishesFiles(string $class, array $expected): void
2828

2929
// Check for each of the expected files
3030
foreach ($expected as $path) {
31-
$file = $this->config->directory . $this->config->vendor . $path;
31+
$file = $this->assets->directory . $this->assets->vendor . $path;
3232
$this->assertFileExists($file);
3333
}
3434
}

tests/FrontendPublisherTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ public function testPublisherSetsDestination()
2929
protected $path = 'foobar';
3030
};
3131

32-
$this->assertSame($this->config->directory . 'vendor/foobar/', $publisher->getDestination());
32+
$this->assertSame($this->assets->directory . 'vendor/foobar/', $publisher->getDestination());
3333
}
3434
}

0 commit comments

Comments
 (0)