From ccdea8b80dc3b7642c5d99e8f5dc8e80ed1e19c2 Mon Sep 17 00:00:00 2001 From: randx Date: Sun, 19 Aug 2012 12:14:36 +0300 Subject: [PATCH] Fix dashboard random test fail --- features/step_definitions/dashboard_steps.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/step_definitions/dashboard_steps.rb b/features/step_definitions/dashboard_steps.rb index bd9d69b8..90c3a69c 100644 --- a/features/step_definitions/dashboard_steps.rb +++ b/features/step_definitions/dashboard_steps.rb @@ -93,11 +93,11 @@ end Given /^I have assigned issues$/ do project1 = Factory :project, :path => "project1", - :code => "TEST1" + :code => "gitlabhq_1" project2 = Factory :project, :path => "project2", - :code => "TEST2" + :code => "gitlabhq_2" project1.add_access(@user, :read, :write) project2.add_access(@user, :read, :write) @@ -116,11 +116,11 @@ end Given /^I have authored merge requests$/ do project1 = Factory :project, :path => "project1", - :code => "TEST1" + :code => "gitlabhq_1" project2 = Factory :project, :path => "project2", - :code => "TEST2" + :code => "gitlabhq_2" project1.add_access(@user, :read, :write) project2.add_access(@user, :read, :write)