summaryrefslogtreecommitdiff
path: root/web-ui/test/custom_matchers.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/custom_matchers.js')
-rw-r--r--web-ui/test/custom_matchers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/test/custom_matchers.js b/web-ui/test/custom_matchers.js
index b1e06d1f..d68d21a8 100644
--- a/web-ui/test/custom_matchers.js
+++ b/web-ui/test/custom_matchers.js
@@ -5,8 +5,8 @@ define([], function() {
compare: function (mail, node) {
var result = {}, equals = {}, subject, tags, from, date, messages = [], notMessages = [];
- subject = node.find('#mail-' + mail.ident + ' .subject-and-tags')[0];
- tags = _.map(node.find('#mail-' + mail.ident + ' .subject-and-tags .tag'), function (tag) { return tag.textContent; });
+ subject = node.find('#mail-' + mail.ident + ' .subject')[0];
+ tags = _.map(node.find('#mail-' + mail.ident + ' .tags .tags-tag'), function (tag) { return tag.textContent; });
date = node.find('#mail-' + mail.ident + ' .received-date');
from = node.find('#mail-' + mail.ident + ' .from');