summaryrefslogtreecommitdiff
path: root/roundcubemail/tests/modcss.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-26 15:06:55 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-26 15:06:55 +0000
commit6a521b70efca09fd6c483b076e653f30bc235beb (patch)
tree7e3cfdaa823971bc33d600d37d18b13d06c69830 /roundcubemail/tests/modcss.php
parentbac575abf1b61f8d7e28eee97b7e87dc9704a4db (diff)
Only lower-case user name if first login attempt failed (#1486393) + fix test
git-svn-id: https://svn.roundcube.net/trunk@3994 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/tests/modcss.php')
-rw-r--r--roundcubemail/tests/modcss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/tests/modcss.php b/roundcubemail/tests/modcss.php
index f9271ff65..3ff5c4895 100644
--- a/roundcubemail/tests/modcss.php
+++ b/roundcubemail/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");