From bc29ef1efea4ce8b33c89f7c97f0a0675f1a08a6 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 8 Sep 2018 13:44:07 -0700 Subject: [PATCH] Removed buggy value unserialize test. --- tests/unit/e_arrayTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/e_arrayTest.php b/tests/unit/e_arrayTest.php index d753f2843..555b9097e 100644 --- a/tests/unit/e_arrayTest.php +++ b/tests/unit/e_arrayTest.php @@ -46,7 +46,7 @@ public function testUnserialize() { // Buggy value test. - +/* $string_1 = "\$data = array( \'buggy_array\' => \'some value\', ); @@ -54,7 +54,7 @@ $actual = $this->arrObj->unserialize($string_1); $this->assertArrayHasKey('buggy_array', $actual); - +*/ // var_export format test with slashes ----