Commit f8009a4858fba2db871d8aecf9480021489da37c
1 parent
2a687dd5
Exists in
master
and in
4 other branches
Fix spinach errors.
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
features/steps/project/project_network_graph.rb
... | ... | @@ -11,7 +11,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps |
11 | 11 | |
12 | 12 | And 'I visit project "Shop" network page' do |
13 | 13 | # Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650) |
14 | - Gitlab::Graph::JsonBuilder.stub(max_count: 10) | |
14 | + Graph::JsonBuilder.stub(max_count: 10) | |
15 | 15 | |
16 | 16 | project = Project.find_by_name("Shop") |
17 | 17 | visit project_graph_path(project, "master") | ... | ... |
features/steps/shared/paths.rb
... | ... | @@ -143,7 +143,7 @@ module SharedPaths |
143 | 143 | |
144 | 144 | Given "I visit my project's network page" do |
145 | 145 | # Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650) |
146 | - Gitlab::Graph::JsonBuilder.stub(max_count: 10) | |
146 | + Graph::JsonBuilder.stub(max_count: 10) | |
147 | 147 | |
148 | 148 | visit project_graph_path(@project, root_ref) |
149 | 149 | end | ... | ... |