diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-11-24 16:01:01 -0600 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-12-18 16:13:35 -0600 |
commit | be60cca90d510061a91a7be36df4c0fb6469587a (patch) | |
tree | 9e335771968da6d8e8d29dd563f13968af6cf1bd /spec/features/calendar_spec.rb | |
parent | 49bc458ad792a095c5ab5ebfc6b3cdf2f655bb92 (diff) | |
download | gitlab-ce-be60cca90d510061a91a7be36df4c0fb6469587a.tar.gz |
fixed specs and the non-rendering stat_graph_contributors_graph
Diffstat (limited to 'spec/features/calendar_spec.rb')
-rw-r--r-- | spec/features/calendar_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/calendar_spec.rb b/spec/features/calendar_spec.rb index a9530becb65..70faf28e09d 100644 --- a/spec/features/calendar_spec.rb +++ b/spec/features/calendar_spec.rb @@ -12,7 +12,7 @@ feature 'Contributions Calendar', :js do issue_params = { title: issue_title } def get_cell_color_selector(contributions) - activity_colors = %w[#ededed #acd5f2 #7fa8c9 #527ba0 #254e77] + activity_colors = ["#ededed", "rgb(172, 213, 242)", "rgb(127, 168, 201)", "rgb(82, 123, 160)", "rgb(37, 78, 119)"] # We currently don't actually test the cases with contributions >= 20 activity_colors_index = if contributions > 0 && contributions < 10 |