From b00592ade50f48b73002682494341c429a6a12eb Mon Sep 17 00:00:00 2001 From: tomneedham Date: Thu, 3 Apr 2014 14:47:55 +0000 Subject: [PATCH] Fix test case for api response code --- tests/lib/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/api.php b/tests/lib/api.php index 233beebd68..0f7d08543e 100644 --- a/tests/lib/api.php +++ b/tests/lib/api.php @@ -37,7 +37,7 @@ class Test_API extends PHPUnit_Framework_TestCase { function dataProviderTestOneResult() { return array( array(100, true), - array(101, true), + array(101, false), array(997, false), ); }