Rename getTalks function

This commit is contained in:
Oliver Davies 2019-12-27 12:42:05 +00:00
parent d57b8ccae0
commit 7955042ec0
4 changed files with 10 additions and 10 deletions

View file

@ -49,7 +49,7 @@ class RetrievingEventsTest extends TestCase
],
];
$talks = $this->extension->getTalks([$talkA, $talkB]);
$talks = $this->extension->getAllTalks([$talkA, $talkB]);
$events = $this->extension->filterPastEvents($talks);
$this->assertInstanceOf(Collection::class, $talks);
@ -85,7 +85,7 @@ class RetrievingEventsTest extends TestCase
];
$talks = $this->extension->getTalks([$talkA, $talkB]);
$talks = $this->extension->getAllTalks([$talkA, $talkB]);
$events = $this->extension->filterUpcomingEvents($talks);
$this->assertInstanceOf(Collection::class, $talks);