diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-12-03 18:02:22 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-12-03 18:02:22 +0100 |
commit | be30b1a8de2c7858be3f1dfa792504478af70eb4 (patch) | |
tree | eb3f69b006041c1a586479bb59dbf557df48eec0 /apps/files_external/tests/smb.php | |
parent | 18663100d9f68400fba1fc344874aacb62bb4659 (diff) | |
parent | 4cb760a92402ab3eb8550fb05b05eae800030680 (diff) | |
download | nextcloud-server-be30b1a8de2c7858be3f1dfa792504478af70eb4.tar.gz nextcloud-server-be30b1a8de2c7858be3f1dfa792504478af70eb4.zip |
merge master into filesystem
Diffstat (limited to 'apps/files_external/tests/smb.php')
-rw-r--r-- | apps/files_external/tests/smb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index b4ac6db1187..be3ea5a8308 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -15,7 +15,7 @@ class SMB extends Storage { public function setUp() { $id = uniqid(); $this->config = include('files_external/tests/config.php'); - if (!is_array($this->config) or !isset($this->config['smb']) or !$this->config['smb']['run']) { + if ( ! is_array($this->config) or ! isset($this->config['smb']) or ! $this->config['smb']['run']) { $this->markTestSkipped('Samba backend not configured'); } $this->config['smb']['root'] .= $id; //make sure we have an new empty folder to work in |