diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2016-06-09 18:41:19 +0200 |
---|---|---|
committer | blizzz <blizzz@arthur-schiwon.de> | 2016-06-09 18:41:19 +0200 |
commit | 28193732ea24094335cccddf5fe03aeeeb6f5894 (patch) | |
tree | 2c38e740669ab2fa6ab50615187d01b9d6dc00d1 /tests/lib/AllConfigTest.php | |
parent | b688aac402cf9d7ee08252077d37ea1c43b22f4a (diff) | |
parent | 51fd2602a77d8d885c53d24ebb8f72be62dc52ce (diff) | |
download | nextcloud-server-28193732ea24094335cccddf5fe03aeeeb6f5894.tar.gz nextcloud-server-28193732ea24094335cccddf5fe03aeeeb6f5894.zip |
Merge pull request #32 from nextcloud/revert-25-downstream-160608
Revert "Downstream 2016-06-08"
Diffstat (limited to 'tests/lib/AllConfigTest.php')
-rw-r--r-- | tests/lib/AllConfigTest.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/lib/AllConfigTest.php b/tests/lib/AllConfigTest.php index 3d0a9cb0827..4f8b0658b80 100644 --- a/tests/lib/AllConfigTest.php +++ b/tests/lib/AllConfigTest.php @@ -123,25 +123,6 @@ class AllConfigTest extends \Test\TestCase { $config->deleteUserValue('userPreCond', 'appPreCond', 'keyPreCond'); } - public function dataSetUserValueUnexpectedValue() { - return [ - [true], - [false], - [null], - [new \stdClass()], - ]; - } - - /** - * @dataProvider dataSetUserValueUnexpectedValue - * @param mixed $value - * @expectedException \UnexpectedValueException - */ - public function testSetUserValueUnexpectedValue($value) { - $config = $this->getConfig(); - $config->setUserValue('userSetBool', 'appSetBool', 'keySetBool', $value); - } - /** * @expectedException \OCP\PreConditionNotMetException */ |