From d69b7bec9583fcbddaf563c44b2483408b459a07 Mon Sep 17 00:00:00 2001
From: Adam Niedzielski <adamsunday@gmail.com>
Date: Fri, 30 Dec 2016 11:32:44 +0100
Subject: [PATCH] Remove time zone information from assertion in timeago
 tooltips spec

This allows the test to pass when your local time zone is different
than UTC.
"Date Format" JavaScript library uses a custom, non-standard format
when displaying time zone part of the datetime. There is no point in
trying to replicate this behavior in Ruby.
---
 spec/features/dashboard/datetime_on_tooltips_spec.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/features/dashboard/datetime_on_tooltips_spec.rb b/spec/features/dashboard/datetime_on_tooltips_spec.rb
index 44dfc2dff45..dc9d09fa396 100644
--- a/spec/features/dashboard/datetime_on_tooltips_spec.rb
+++ b/spec/features/dashboard/datetime_on_tooltips_spec.rb
@@ -6,7 +6,7 @@ feature 'Tooltips on .timeago dates', feature: true, js: true do
   let(:user)            { create(:user) }
   let(:project)         { create(:project, name: 'test', namespace: user.namespace) }
   let(:created_date)    { Date.yesterday.to_time }
-  let(:expected_format) { created_date.strftime('%b %-d, %Y %l:%M%P UTC') }
+  let(:expected_format) { created_date.strftime('%b %-d, %Y %l:%M%P') }
 
   context 'on the activity tab' do
     before do
-- 
GitLab