mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
typo
This commit is contained in:
parent
69f19f85d5
commit
426890aa62
@ -20,8 +20,8 @@ class JourneyTest extends TestCase
|
||||
|
||||
public function testCanGetOnAJourneyToACity()
|
||||
{
|
||||
$beachJourney = new TemplateMethod\CityJourney();
|
||||
$beachJourney->takeATrip();
|
||||
$cityJourney = new TemplateMethod\CityJourney();
|
||||
$cityJourney->takeATrip();
|
||||
|
||||
$this->assertSame(
|
||||
[
|
||||
@ -31,7 +31,7 @@ class JourneyTest extends TestCase
|
||||
'Buy a gift',
|
||||
'Taking the plane'
|
||||
],
|
||||
$beachJourney->getThingsToDo()
|
||||
$cityJourney->getThingsToDo()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user