Skip to content

Commit

Permalink
Merge pull request #330 from dmason30/fix-limit-test
Browse files Browse the repository at this point in the history
Fix broken limit test
  • Loading branch information
mikebronner committed Apr 10, 2020
2 parents da03500 + da8bd97 commit 3a7c951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/CachedBuilder/LimitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function testGetModelResultsCreatesCache()
$authors = (new Author)
->limit(5)
->get();
$key = sha1("genealabs:laravel-model-caching:testing:/Users/mike/Developer/Sites/laravel-model-caching/tests/database/testing.sqlite:authors:genealabslaravelmodelcachingtestsfixturesauthor-authors.deleted_at_null-limit_5");
$key = sha1("genealabs:laravel-model-caching:testing:{$this->testingSqlitePath}testing.sqlite:authors:genealabslaravelmodelcachingtestsfixturesauthor-authors.deleted_at_null-limit_5");
$tags = [
"genealabs:laravel-model-caching:testing:{$this->testingSqlitePath}testing.sqlite:genealabslaravelmodelcachingtestsfixturesauthor",
];
Expand Down

0 comments on commit 3a7c951

Please sign in to comment.