update typo in test

This commit is contained in:
Avi Das
2014-08-26 12:04:06 -05:00
parent 948c6f73d8
commit c5fec7ce7f

View File

@@ -54,7 +54,7 @@ class OrderTest extends \PHPUnit_Framework_TestCase {
$o1 = $this->order;
$o2 = new Order();
$o2->fromJson($this->o1->toJson());
$o2->fromJson($o1->toJson());
$this->assertEquals($o1, $o2);
}