Skip to content

Commit 58fb525

Browse files
LynesthAydinHassan
authored andcommitted
Fix tests
1 parent 6f5e4aa commit 58fb525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/MenuItem/SelectableItemTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function testGetRowsWithUnSelectedMarker() : void
9090
->expects($this->exactly(2))
9191
->method('getMarker')
9292
->with(false)
93-
->will($this->returnValue('*'));
93+
->will($this->returnValue('* '));
9494

9595
$item = new SelectableItem('Item', function () {
9696
});
@@ -111,7 +111,7 @@ public function testGetRowsWithSelectedMarker() : void
111111
->expects($this->once())
112112
->method('getMarker')
113113
->with(true)
114-
->will($this->returnValue('='));
114+
->will($this->returnValue('= '));
115115

116116
$item = new SelectableItem('Item', function () {
117117
});

0 commit comments

Comments
 (0)