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 385ece1 commit bb9586eCopy full SHA for bb9586e
test/MenuItem/SelectableItemTest.php
@@ -90,7 +90,7 @@ public function testGetRowsWithUnSelectedMarker() : void
90
->expects($this->exactly(2))
91
->method('getMarker')
92
->with(false)
93
- ->will($this->returnValue('*'));
+ ->will($this->returnValue('* '));
94
95
$item = new SelectableItem('Item', function () {
96
});
@@ -111,7 +111,7 @@ public function testGetRowsWithSelectedMarker() : void
111
->expects($this->once())
112
113
->with(true)
114
- ->will($this->returnValue('='));
+ ->will($this->returnValue('= '));
115
116
117
0 commit comments