diff --git a/app/views/bubbles/pins/show.html.erb b/app/views/bubbles/pins/show.html.erb
index 7fe838e50..27ac1934a 100644
--- a/app/views/bubbles/pins/show.html.erb
+++ b/app/views/bubbles/pins/show.html.erb
@@ -6,7 +6,7 @@
<% end %>
<% else %>
<%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %>
- <%= image_tag "unpinned.svg", size: 16, aria: { hidden: true } %>
+ <%= image_tag "pinned.svg", size: 16, aria: { hidden: true } %>
Pin this card
<% end %>
<% end %>
diff --git a/app/views/bubbles/watches/show.html.erb b/app/views/bubbles/watches/show.html.erb
index ae9294875..0fb917fd3 100644
--- a/app/views/bubbles/watches/show.html.erb
+++ b/app/views/bubbles/watches/show.html.erb
@@ -1,7 +1,7 @@
<%= turbo_frame_tag dom_id(@bubble, :watch) do %>
<% if @bubble.watched_by? Current.user %>
<%= button_to bucket_bubble_watch_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %>
- <%= image_tag "bell-off.svg", size: 16, aria: { hidden: true } %>
+ <%= image_tag "bell.svg", size: 16, aria: { hidden: true } %>
Stop watching
<% end %>
<% else %>
diff --git a/test/models/event_summary_test.rb b/test/models/event_summary_test.rb
index 06d80b5df..ed78b4e1c 100644
--- a/test/models/event_summary_test.rb
+++ b/test/models/event_summary_test.rb
@@ -2,9 +2,9 @@ require "test_helper"
class EventSummaryTest < ActiveSupport::TestCase
test "body" do
- assert_equal "Added by David 7 days ago. Assigned to JZ 7 days ago. David +1.", event_summaries(:logo_initial_activity).body
- assert_equal "Assigned to Kevin 1 day ago. Kevin +2 and JZ +1.", event_summaries(:logo_second_activity).body
+ assert_equal "Added by David. Assigned to JZ. David +1.", event_summaries(:logo_initial_activity).body
+ assert_equal "Assigned to Kevin. Kevin +2 and JZ +1.", event_summaries(:logo_second_activity).body
assert_equal "JZ +1.", event_summaries(:logo_third_activity).body
- assert_equal "Added by Kevin 7 days ago.", event_summaries(:text_initial_activity).body
+ assert_equal "Added by Kevin.", event_summaries(:text_initial_activity).body
end
end