From 59a5df6a4bb81b0350090fc5f28677d239910379 Mon Sep 17 00:00:00 2001 From: Clark Tomlinson <fallen013@gmail.com> Date: Mon, 22 Sep 2014 14:13:30 -0400 Subject: [PATCH] ignoring writedata test in windows. --- tests/lib/config.php | 3 +++ 1 file changed, 3 insertions(+) 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'); } -- GitLab