Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-25 15:23:06 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-25 15:23:06 +0400
commit0a01994466622c5fce69252042a35231ab418379 (patch)
treeba043a29453a1af5baba5172e3f94742ec9132cc /features
parent573d367be5a61e9b344e48b6678cdd8067fe6bd1 (diff)
Fix public project tests
Diffstat (limited to 'features')
-rw-r--r--features/steps/public/projects_feature.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/features/steps/public/projects_feature.rb b/features/steps/public/projects_feature.rb
index 2f2c4de0b2a..e9a4d56e36b 100644
--- a/features/steps/public/projects_feature.rb
+++ b/features/steps/public/projects_feature.rb
@@ -11,7 +11,6 @@ class Spinach::Features::PublicProjectsFeature < Spinach::FeatureSteps
step 'I should see project "Empty Public Project"' do
page.should have_content "Empty Public Project"
- puts page.save_page('foo.html')
end
step 'I should see public project details' do
@@ -24,7 +23,7 @@ class Spinach::Features::PublicProjectsFeature < Spinach::FeatureSteps
end
step 'public project "Community"' do
- create :project_with_code, name: 'Community', public: true
+ create :project_with_code, name: 'Community', public: true, default_branch: 'master'
end
step 'public empty project "Empty Public Project"' do