From e10f0dc38b4539db1f8e222d69962a6040fd0e4d Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Thu, 1 Aug 2024 15:43:36 +0200 Subject: feat(theming): Update value of body container radius Co-authored-by: Ferdinand Thiessen Signed-off-by: Marco Ambrosini --- apps/theming/tests/Themes/DefaultThemeTest.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/theming/tests') 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); } -- cgit v1.2.3