aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/tests
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@proton.me>2024-08-01 15:43:36 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-08-01 21:41:21 +0200
commite10f0dc38b4539db1f8e222d69962a6040fd0e4d (patch)
tree45d97e95df09e1cddc2a01aff0905a045c14059c /apps/theming/tests
parent92e27a24f82f8d6794609c1e2120189c8e67f6ad (diff)
downloadnextcloud-server-e10f0dc38b4539db1f8e222d69962a6040fd0e4d.tar.gz
nextcloud-server-e10f0dc38b4539db1f8e222d69962a6040fd0e4d.zip
feat(theming): Update value of body container radius
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: Marco Ambrosini <marcoambrosini@proton.me>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r--apps/theming/tests/Themes/DefaultThemeTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/theming/tests/Themes/DefaultThemeTest.php b/apps/theming/tests/Themes/DefaultThemeTest.php
index 91b7d8887d7..d11237e774c 100644
--- a/apps/theming/tests/Themes/DefaultThemeTest.php
+++ b/apps/theming/tests/Themes/DefaultThemeTest.php
@@ -152,6 +152,8 @@ class DefaultThemeTest extends AccessibleThemeTestCase {
$fallbackCss = file_get_contents(__DIR__ . '/../../css/default.css');
// Remove comments
$fallbackCss = preg_replace('/\s*\/\*[\s\S]*?\*\//m', '', $fallbackCss);
+ // Remove blank lines
+ $fallbackCss = preg_replace('/\s*\n\n/', "\n", $fallbackCss);
$this->assertEquals($css, $fallbackCss);
}