From f8db99d70c3221327d7cb9a4554a5806c7b09992 Mon Sep 17 00:00:00 2001 From: Darcy Date: Thu, 5 Jan 2017 10:38:20 -0600 Subject: [PATCH] Fix typo no -> now --- Behavioral/Memento/Tests/MementoTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Behavioral/Memento/Tests/MementoTest.php b/Behavioral/Memento/Tests/MementoTest.php index d4a44f3..65d7e98 100644 --- a/Behavioral/Memento/Tests/MementoTest.php +++ b/Behavioral/Memento/Tests/MementoTest.php @@ -22,7 +22,7 @@ class MementoTest extends \PHPUnit_Framework_TestCase $ticket->assign(); $this->assertEquals(State::STATE_ASSIGNED, (string) $ticket->getState()); - // 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 $ticket->restoreFromMemento($memento); $this->assertEquals(State::STATE_OPENED, (string) $ticket->getState());