summaryrefslogtreecommitdiffstats
path: root/tests/lib/AllConfigTest.php
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2016-06-09 18:41:19 +0200
committerblizzz <blizzz@arthur-schiwon.de>2016-06-09 18:41:19 +0200
commit28193732ea24094335cccddf5fe03aeeeb6f5894 (patch)
tree2c38e740669ab2fa6ab50615187d01b9d6dc00d1 /tests/lib/AllConfigTest.php
parentb688aac402cf9d7ee08252077d37ea1c43b22f4a (diff)
parent51fd2602a77d8d885c53d24ebb8f72be62dc52ce (diff)
downloadnextcloud-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.php19
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
*/