Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-06-09 01:27:57 +0400
committerJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-06-09 01:27:57 +0400
commit597836d6ccc52588d90780313ccc4eef730e16df (patch)
tree8344d1650cc0423ded84479d4412c3d16ba6f2a1 /spec/helpers/notifications_helper_spec.rb
parent7a89cef601dde68d5964f68bb6fe2e94d72fcf55 (diff)
Fixed some broken specs
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
Diffstat (limited to 'spec/helpers/notifications_helper_spec.rb')
-rw-r--r--spec/helpers/notifications_helper_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/helpers/notifications_helper_spec.rb b/spec/helpers/notifications_helper_spec.rb
index dce28525ca4..3ecabbaf045 100644
--- a/spec/helpers/notifications_helper_spec.rb
+++ b/spec/helpers/notifications_helper_spec.rb
@@ -8,7 +8,7 @@ describe NotificationsHelper do
before { notification.stub(disabled?: true) }
it "has a red icon" do
- notification_icon(notification).should match('class="icon-volume-off cred"')
+ notification_icon(notification).should match('class="icon-volume-off ns-mute"')
end
end
@@ -16,7 +16,7 @@ describe NotificationsHelper do
before { notification.stub(participating?: true) }
it "has a blue icon" do
- notification_icon(notification).should match('class="icon-volume-down cblue"')
+ notification_icon(notification).should match('class="icon-volume-down ns-part"')
end
end
@@ -24,12 +24,12 @@ describe NotificationsHelper do
before { notification.stub(watch?: true) }
it "has a green icon" do
- notification_icon(notification).should match('class="icon-volume-up cgreen"')
+ notification_icon(notification).should match('class="icon-volume-up ns-watch"')
end
end
it "has a blue icon" do
- notification_icon(notification).should match('class="icon-circle-blank cblue"')
+ notification_icon(notification).should match('class="icon-circle-blank ns-default"')
end
end
end