From 4320399ea7322fd8fa471a2765b0ddb57d5c5045 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 22 Jul 2018 11:05:38 -0700 Subject: [PATCH] Fixed a typo --- tests/unit/e_arrayTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/e_arrayTest.php b/tests/unit/e_arrayTest.php index 81afe0bb3..dce5fd884 100644 --- a/tests/unit/e_arrayTest.php +++ b/tests/unit/e_arrayTest.php @@ -62,7 +62,7 @@ // json value test. $string_4 = '{ "json": "some value" }'; - $actual = $this->arrObj->unserialize(stripslashes($string_4)); + $actual = $this->arrObj->unserialize($string_4); $this->assertArrayHasKey('json', $actual);