Skip to content

Commit f8db99d

Browse files
authored
Fix typo
no -> now
1 parent 1668243 commit f8db99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Behavioral/Memento/Tests/MementoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function testOpenTicketAssignAndSetBackToOpen()
2222
$ticket->assign();
2323
$this->assertEquals(State::STATE_ASSIGNED, (string) $ticket->getState());
2424

25-
// no restore to the opened state, but verify that the state object has been cloned for the memento
25+
// now restore to the opened state, but verify that the state object has been cloned for the memento
2626
$ticket->restoreFromMemento($memento);
2727

2828
$this->assertEquals(State::STATE_OPENED, (string) $ticket->getState());

0 commit comments

Comments
 (0)