Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-12-29 17:20:31 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-12-29 17:24:00 +0300
commitedbd604ebc0094f48ab735da3e449625f8f6cfd9 (patch)
tree83d51deddc13dbc91a64ee3add196eda52afbb1e /tests
parent8eb7310025dc24ddd379b36e0e94bab536f2216b (diff)
Fix PHP-CS
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/TextTest.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/TextTest.php b/tests/TextTest.php
index 5bbab6a0f..79376212e 100644
--- a/tests/TextTest.php
+++ b/tests/TextTest.php
@@ -1,18 +1,12 @@
<?php
+
namespace OCA\Text\Tests;
-use OCA\Social\Controller\NavigationController;
-use OCA\Social\Controller\SocialPubController;
-use OCA\Social\Service\CacheActorService;
use OCA\Text\AppInfo\Application;
-use OCP\IL10N;
-use OCP\IRequest;
class TextTest extends \PHPUnit\Framework\TestCase {
-
public function testDummy() {
$app = new Application();
$this->assertEquals('text', $app::APP_NAME);
}
-
}