summaryrefslogtreecommitdiff
path: root/tests/modcss.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-09-26 15:06:55 +0000
committerthomascube <thomas@roundcube.net>2010-09-26 15:06:55 +0000
commit6d94ab311ac4ac28c47a7a1d367aa680a7ec23e0 (patch)
tree71eeacb7f7d8ef1af0ca9cd6a71e1030d172b15c /tests/modcss.php
parent8603bbba2e0bb3dfe171c0241bf97ab7ef9575fc (diff)
Only lower-case user name if first login attempt failed (#1486393) + fix test
Diffstat (limited to 'tests/modcss.php')
-rw-r--r--tests/modcss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modcss.php b/tests/modcss.php
index f9271ff65..3ff5c4895 100644
--- a/tests/modcss.php
+++ b/tests/modcss.php
@@ -18,7 +18,7 @@ class rcube_test_modcss extends UnitTestCase
$css = file_get_contents(TESTS_DIR . 'src/valid.css');
$mod = rcmail_mod_css_styles($css, 'rcmbody');
- $this->assertPattern('/#rcmbody div.rcmBody\s+\{/', $mod, "Replace body style definition");
+ $this->assertPattern('/#rcmbody\s+\{/', $mod, "Replace body style definition");
$this->assertPattern('/#rcmbody h1\s\{/', $mod, "Prefix tag styles (single)");
$this->assertPattern('/#rcmbody h1, #rcmbody h2, #rcmbody h3, #rcmbody textarea\s+\{/', $mod, "Prefix tag styles (multiple)");
$this->assertPattern('/#rcmbody \.noscript\s+\{/', $mod, "Prefix class styles");