Commit ccdea8b80dc3b7642c5d99e8f5dc8e80ed1e19c2
1 parent
8e3a2def
Exists in
master
and in
4 other branches
Fix dashboard random test fail
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
features/step_definitions/dashboard_steps.rb
| ... | ... | @@ -93,11 +93,11 @@ end |
| 93 | 93 | Given /^I have assigned issues$/ do |
| 94 | 94 | project1 = Factory :project, |
| 95 | 95 | :path => "project1", |
| 96 | - :code => "TEST1" | |
| 96 | + :code => "gitlabhq_1" | |
| 97 | 97 | |
| 98 | 98 | project2 = Factory :project, |
| 99 | 99 | :path => "project2", |
| 100 | - :code => "TEST2" | |
| 100 | + :code => "gitlabhq_2" | |
| 101 | 101 | |
| 102 | 102 | project1.add_access(@user, :read, :write) |
| 103 | 103 | project2.add_access(@user, :read, :write) |
| ... | ... | @@ -116,11 +116,11 @@ end |
| 116 | 116 | Given /^I have authored merge requests$/ do |
| 117 | 117 | project1 = Factory :project, |
| 118 | 118 | :path => "project1", |
| 119 | - :code => "TEST1" | |
| 119 | + :code => "gitlabhq_1" | |
| 120 | 120 | |
| 121 | 121 | project2 = Factory :project, |
| 122 | 122 | :path => "project2", |
| 123 | - :code => "TEST2" | |
| 123 | + :code => "gitlabhq_2" | |
| 124 | 124 | |
| 125 | 125 | project1.add_access(@user, :read, :write) |
| 126 | 126 | project2.add_access(@user, :read, :write) | ... | ... |