summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/lib/config.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/config.php b/tests/lib/config.php
index c67a66c832e..f739df3ce97 100644
--- a/tests/lib/config.php
+++ b/tests/lib/config.php
@@ -79,6 +79,9 @@ class Test_Config extends PHPUnit_Framework_TestCase {
* @expectedException \OC\HintException
*/
public function testWriteData() {
+ if (\OC_Util::runningOnWindows()) {
+ throw new \OC\HintException('this is ireelevent for windows');
+ }
$config = new OC\Config('/non-writable');
$config->setValue('foo', 'bar');
}