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:
authorSato Hiroyuki <sathiroyuki@gmail.com>2013-03-01 12:28:29 +0400
committerSato Hiroyuki <sathiroyuki@gmail.com>2013-03-01 12:28:29 +0400
commitf8009a4858fba2db871d8aecf9480021489da37c (patch)
treec60f89332e16249d5247fbccf274aa3e0a117440 /features
parent2a687dd5625c29e48b7b64a388a828c358d45215 (diff)
Fix spinach errors.
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/project_network_graph.rb2
-rw-r--r--features/steps/shared/paths.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/project/project_network_graph.rb b/features/steps/project/project_network_graph.rb
index f26deff9367..b66aadfeae2 100644
--- a/features/steps/project/project_network_graph.rb
+++ b/features/steps/project/project_network_graph.rb
@@ -11,7 +11,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
And 'I visit project "Shop" network page' do
# Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650)
- Gitlab::Graph::JsonBuilder.stub(max_count: 10)
+ Graph::JsonBuilder.stub(max_count: 10)
project = Project.find_by_name("Shop")
visit project_graph_path(project, "master")
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb
index 40786f6e6d4..431d5299d8f 100644
--- a/features/steps/shared/paths.rb
+++ b/features/steps/shared/paths.rb
@@ -143,7 +143,7 @@ module SharedPaths
Given "I visit my project's network page" do
# Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650)
- Gitlab::Graph::JsonBuilder.stub(max_count: 10)
+ Graph::JsonBuilder.stub(max_count: 10)
visit project_graph_path(@project, root_ref)
end