summaryrefslogtreecommitdiffstats
path: root/tests/Core
diff options
context:
space:
mode:
authorThomas Pulzer <t.pulzer@kniel.de>2016-07-04 11:50:32 +0200
committerThomas Pulzer <t.pulzer@kniel.de>2016-07-04 11:50:32 +0200
commit90b7f74da714209ee9c6a9a3243dacbaee2dc435 (patch)
tree399f35c9ce80df45b39217f982535249aa3398ca /tests/Core
parent978ab660f737edbc38e7847f86e6106fb456dcb7 (diff)
downloadnextcloud-server-90b7f74da714209ee9c6a9a3243dacbaee2dc435.tar.gz
nextcloud-server-90b7f74da714209ee9c6a9a3243dacbaee2dc435.zip
Changed name of default logfile from owncloud.log to nextcloud.log.
Diffstat (limited to 'tests/Core')
-rw-r--r--tests/Core/Command/Log/OwnCloudTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Core/Command/Log/OwnCloudTest.php b/tests/Core/Command/Log/OwnCloudTest.php
index 3cb05221c37..e0445a5cfda 100644
--- a/tests/Core/Command/Log/OwnCloudTest.php
+++ b/tests/Core/Command/Log/OwnCloudTest.php
@@ -101,7 +101,7 @@ class OwnCloudTest extends TestCase {
->will($this->returnValueMap([
['log_type', 'owncloud', 'log_type_value'],
['datadirectory', \OC::$SERVERROOT.'/data', '/data/directory/'],
- ['logfile', '/data/directory/owncloud.log', '/var/log/owncloud.log'],
+ ['logfile', '/data/directory/nextcloud.log', '/var/log/nextcloud.log'],
['log_rotate_size', 0, 5 * 1024 * 1024],
]));
@@ -110,7 +110,7 @@ class OwnCloudTest extends TestCase {
->with('Log backend ownCloud: disabled');
$this->consoleOutput->expects($this->at(1))
->method('writeln')
- ->with('Log file: /var/log/owncloud.log');
+ ->with('Log file: /var/log/nextcloud.log');
$this->consoleOutput->expects($this->at(2))
->method('writeln')
->with('Rotate at: 5 MB');