diff options
author | Sean McGivern <sean@gitlab.com> | 2016-06-01 13:35:43 +0100 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-06-06 11:59:49 -0500 |
commit | 1cc0209a8057c32cb7b073b822410f8b4c4ad3c9 (patch) | |
tree | 361014f992602a8c56a6d05322b5ee9137675655 /spec | |
parent | b28237b4d269e1e191597324769113ee4254d7c3 (diff) | |
download | gitlab-ce-1cc0209a8057c32cb7b073b822410f8b4c4ad3c9.tar.gz |
Fix style
- `reorder(nil)` is better than `reorder('')`
- Only use ASCII in comments
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/labels/issues_sorted_by_priority_spec.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/features/projects/labels/issues_sorted_by_priority_spec.rb b/spec/features/projects/labels/issues_sorted_by_priority_spec.rb index fac70087c0b..453ded8ee71 100644 --- a/spec/features/projects/labels/issues_sorted_by_priority_spec.rb +++ b/spec/features/projects/labels/issues_sorted_by_priority_spec.rb @@ -1,3 +1,4 @@ +# coding: utf-8 require 'spec_helper' feature 'Issue prioritization', feature: true do @@ -72,7 +73,7 @@ feature 'Issue prioritization', feature: true do issue_7.labels << label_2 # 5 issue_2.labels << label_3 # 6 issue_4.labels << label_4 # 7 - issue_6.labels << label_5 # 8 – No priority + issue_6.labels << label_5 # 8 - No priority login_as user visit namespace_project_issues_path(project.namespace, project, sort: 'priority') |