diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php
index ae08877bd7fd6f6267323bf5e796e6c4dc283366..c73e528a277e726712f941371ba8e5ca02fe1cc2 100644
--- a/tests/lib/appconfig.php
+++ b/tests/lib/appconfig.php
@@ -86,20 +86,6 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase {
 		$this->assertEquals('somevalue', $value['configvalue']);
 	}
 
-	/**
-	 * @expectedException \Doctrine\DBAL\DBALException
-	*/
-	public function testSetValueNull() {
-		\OC_Appconfig::setValue('testapp', 'installed_version', null);
-	}
-
-	/**
-	 * @expectedException \Doctrine\DBAL\DBALException
-	*/
-	public function testSetValueEmptyString() {
-		\OC_Appconfig::setValue('testapp', '', '1.33.7');
-	}
-
 	public function testDeleteKey() {
 		\OC_Appconfig::deleteKey('testapp', 'deletethis');
 		$query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?');