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 1668243 commit f8db99dCopy full SHA for f8db99d
Behavioral/Memento/Tests/MementoTest.php
@@ -22,7 +22,7 @@ public function testOpenTicketAssignAndSetBackToOpen()
22
$ticket->assign();
23
$this->assertEquals(State::STATE_ASSIGNED, (string) $ticket->getState());
24
25
- // no restore to the opened state, but verify that the state object has been cloned for the memento
+ // now restore to the opened state, but verify that the state object has been cloned for the memento
26
$ticket->restoreFromMemento($memento);
27
28
$this->assertEquals(State::STATE_OPENED, (string) $ticket->getState());
0 commit comments