diff options
author | tomneedham <tom@owncloud.com> | 2014-04-03 14:47:55 +0000 |
---|---|---|
committer | tomneedham <tom@owncloud.com> | 2014-04-03 14:47:55 +0000 |
commit | b00592ade50f48b73002682494341c429a6a12eb (patch) | |
tree | 9e1080c6abfa5e32bc8aeb2fab50411d3316cc83 /tests/lib | |
parent | 6b017201b8753206236bf96b61c87224c6e41f41 (diff) | |
download | nextcloud-server-b00592ade50f48b73002682494341c429a6a12eb.tar.gz nextcloud-server-b00592ade50f48b73002682494341c429a6a12eb.zip |
Fix test case for api response code
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/api.php b/tests/lib/api.php index 233beebd68a..0f7d08543ea 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), ); } |