summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-11-18 12:27:44 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-11-18 12:27:44 -0200
commit500744ee8cabd1bffb61eae8029f2832d6fb2f02 (patch)
tree3fa7bb88f097a057016ebd7b60942038c3427c9d /web-ui
parent59939b8b2901550029480920f0d1b39097ce4a59 (diff)
Fix JS unit test after attachment changes
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/test/spec/mail_list/ui/mail_list.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/test/spec/mail_list/ui/mail_list.spec.js b/web-ui/test/spec/mail_list/ui/mail_list.spec.js
index d90f906c..23ca87fb 100644
--- a/web-ui/test/spec/mail_list/ui/mail_list.spec.js
+++ b/web-ui/test/spec/mail_list/ui/mail_list.spec.js
@@ -225,7 +225,7 @@ describeComponent('mail_list/ui/mail_list', function () {
expect(node.html()).toMatch('id="mail-' + mail.ident + '"');
expect(node.html()).toMatch('<div class="subject-and-tags">');
expect(node.html()).toMatch('<div class="from">' + mail.header.from + '</div>');
- expect(node.html()).toMatch('<span class="received-date">' + mail.header.formattedDate + '</span>');
+ expect(node.html()).toMatch('<span class="received-date">' + mail.header.formattedDate);
}
function matchSelectedMail(mail, node) {