diff options
author | Clark Tomlinson <fallen013@gmail.com> | 2014-09-22 14:13:30 -0400 |
---|---|---|
committer | Clark Tomlinson <fallen013@gmail.com> | 2014-09-22 14:13:30 -0400 |
commit | 59a5df6a4bb81b0350090fc5f28677d239910379 (patch) | |
tree | ae291787fdd22c572528463e61c7ee9c783d7708 /tests | |
parent | 7b6aa3cd3dd57b0415f8a81ace27bed078bab728 (diff) | |
download | nextcloud-server-59a5df6a4bb81b0350090fc5f28677d239910379.tar.gz nextcloud-server-59a5df6a4bb81b0350090fc5f28677d239910379.zip |
ignoring writedata test in windows.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/config.php | 3 |
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'); } |