From c5fec7ce7f8fb4b157d9074caed21d3f057a924c Mon Sep 17 00:00:00 2001 From: Avi Das Date: Tue, 26 Aug 2014 12:04:06 -0500 Subject: [PATCH] update typo in test --- tests/PayPal/Test/Api/OrderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PayPal/Test/Api/OrderTest.php b/tests/PayPal/Test/Api/OrderTest.php index 1b28343..946852d 100644 --- a/tests/PayPal/Test/Api/OrderTest.php +++ b/tests/PayPal/Test/Api/OrderTest.php @@ -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); }