Renamed method

This commit is contained in:
Alejandro Celaya
2019-02-17 13:21:07 +01:00
parent e2abe23895
commit 1bcd03b150
5 changed files with 9 additions and 9 deletions

View File

@@ -51,7 +51,7 @@ class VisitServiceTest extends TestCase
$clear = $this->em->clear()->will(function () {
});
$this->visitService->locateVisits(function () {
$this->visitService->locateUnlocatedVisits(function () {
return Location::emptyInstance();
}, function () {
$args = func_get_args();
@@ -87,7 +87,7 @@ class VisitServiceTest extends TestCase
$clear = $this->em->clear()->will(function () {
});
$this->visitService->locateVisits(function () {
$this->visitService->locateUnlocatedVisits(function () {
throw new IpCannotBeLocatedException('Cannot be located');
});