Skip to content

Commit 385ece1

Browse files
authored
Fix tests
1 parent d66afb8 commit 385ece1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/MenuItem/MenuMenuItemTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function testGetRowsWithUnSelectedMarker() : void
7777
->expects($this->exactly(2))
7878
->method('getMarker')
7979
->with(false)
80-
->will($this->returnValue('*'));
80+
->will($this->returnValue('* '));
8181

8282
$subMenu = $this->createMock(CliMenu::class);
8383

@@ -99,7 +99,7 @@ public function testGetRowsWithSelectedMarker() : void
9999
->expects($this->once())
100100
->method('getMarker')
101101
->with(true)
102-
->will($this->returnValue('='));
102+
->will($this->returnValue('= '));
103103

104104
$subMenu = $this->getMockBuilder(CliMenu::class)
105105
->disableOriginalConstructor()

0 commit comments

Comments
 (0)