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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2021-01-16 05:39:26 +0300
committerGretaD <gretadoci@gmail.com>2021-01-18 13:49:49 +0300
commit403944291826f60e40d6a5691477c985bbfd14a3 (patch)
treeb6fb0286ea9bd5074722f0186a116aeb898c4fd1 /tests
parent33a5c1ea0ca9165b96d8fc718f209187eadc7756 (diff)
Bump nextcloud/coding-standard from 0.4.0 to 0.5.0
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 0.4.0 to 0.5.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v0.4.0...v0.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Service/HtmlTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Service/HtmlTest.php b/tests/Unit/Service/HtmlTest.php
index a42ff8ee4..ed3b4ae6b 100644
--- a/tests/Unit/Service/HtmlTest.php
+++ b/tests/Unit/Service/HtmlTest.php
@@ -73,7 +73,7 @@ class HtmlTest extends TestCase {
$urlGenerator = OC::$server->getURLGenerator();
$request = OC::$server->getRequest();
$html = new Html($urlGenerator, $request);
- list($b, $s) = $html->parseMailBody($text);
+ [$b, $s] = $html->parseMailBody($text);
$this->assertSame($expectedBody, $b);
$this->assertSame($expectedSignature, $s);
}