We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613fa7b commit 6f5e4aaCopy full SHA for 6f5e4aa
test/MenuItem/MenuMenuItemTest.php
@@ -77,7 +77,7 @@ public function testGetRowsWithUnSelectedMarker() : void
77
->expects($this->exactly(2))
78
->method('getMarker')
79
->with(false)
80
- ->will($this->returnValue('*'));
+ ->will($this->returnValue('* '));
81
82
$subMenu = $this->createMock(CliMenu::class);
83
@@ -99,7 +99,7 @@ public function testGetRowsWithSelectedMarker() : void
99
->expects($this->once())
100
101
->with(true)
102
- ->will($this->returnValue('='));
+ ->will($this->returnValue('= '));
103
104
$subMenu = $this->getMockBuilder(CliMenu::class)
105
->disableOriginalConstructor()
0 commit comments