diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-19 08:50:14 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-19 08:50:14 +0200 |
commit | 71603fe34830c6b7e65cb59ef116611544a18d1a (patch) | |
tree | a155624378a41028ab7df47098886eed127bda49 /tests/lib | |
parent | 0ab1120a33eb08e7deb27145199e61ca71f695d2 (diff) | |
download | nextcloud-server-71603fe34830c6b7e65cb59ef116611544a18d1a.tar.gz nextcloud-server-71603fe34830c6b7e65cb59ef116611544a18d1a.zip |
Fix namespace in log/ and mail/
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/log/OwncloudTest.php (renamed from tests/lib/log/owncloud.php) | 0 | ||||
-rw-r--r-- | tests/lib/mail/MailerTest.php (renamed from tests/lib/mail/mailer.php) | 4 | ||||
-rw-r--r-- | tests/lib/mail/MessageTest.php (renamed from tests/lib/mail/message.php) | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/log/owncloud.php b/tests/lib/log/OwncloudTest.php index e19063a83f5..e19063a83f5 100644 --- a/tests/lib/log/owncloud.php +++ b/tests/lib/log/OwncloudTest.php diff --git a/tests/lib/mail/mailer.php b/tests/lib/mail/MailerTest.php index 8023cda820e..c63ceb5982a 100644 --- a/tests/lib/mail/mailer.php +++ b/tests/lib/mail/MailerTest.php @@ -6,11 +6,13 @@ * See the COPYING-README file. */ -namespace Test; +namespace Test\Mail; + use OC\Mail\Mailer; use OCP\IConfig; use OC_Defaults; use OCP\ILogger; +use Test\TestCase; class MailerTest extends TestCase { /** @var IConfig */ diff --git a/tests/lib/mail/message.php b/tests/lib/mail/MessageTest.php index 339677c0a7c..691168ce24c 100644 --- a/tests/lib/mail/message.php +++ b/tests/lib/mail/MessageTest.php @@ -6,10 +6,11 @@ * See the COPYING-README file. */ -namespace Test; +namespace Test\Mail; use OC\Mail\Message; use Swift_Message; +use Test\TestCase; class MessageTest extends TestCase { /** @var Swift_Message */ |