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:
authorSytse Sijbrandij <sytses@gmail.com>2013-12-01 15:10:16 +0400
committerSytse Sijbrandij <sytses@gmail.com>2013-12-01 15:10:16 +0400
commit7f3ff69e3e3020aa53587b9ac907a9238b3d528c (patch)
tree24f8a88d07d60162dee60da134e6115889c365ec /features
parent477e9f87e14a8b7a04355453283d49e4e14fcafb (diff)
parente3d4eb2140029dcc42144e2d2920386fe8be9cc2 (diff)
Merge pull request #5737 from Popl7/type_fix_for_project_network_graph
type_fix_for_project_network_graph
Diffstat (limited to 'features')
-rw-r--r--features/project/network.feature6
-rw-r--r--features/steps/project/project_network_graph.rb4
2 files changed, 5 insertions, 5 deletions
diff --git a/features/project/network.feature b/features/project/network.feature
index ceae08c1074..22beb1c50bc 100644
--- a/features/project/network.feature
+++ b/features/project/network.feature
@@ -29,11 +29,11 @@ Feature: Project Network Graph
@javascript
Scenario: I should filter selected tag
When I switch ref to "v2.1.0"
- Then page should have content not cotaining "v2.1.0"
+ Then page should have content not containing "v2.1.0"
When click "Show only selected branch" checkbox
- Then page should not have content not cotaining "v2.1.0"
+ Then page should not have content not containing "v2.1.0"
When click "Show only selected branch" checkbox
- Then page should have content not cotaining "v2.1.0"
+ Then page should have content not containing "v2.1.0"
Scenario: I should fail to look for a commit
When I look for a commit by ";"
diff --git a/features/steps/project/project_network_graph.rb b/features/steps/project/project_network_graph.rb
index 127adecf7ed..4954db2d7b1 100644
--- a/features/steps/project/project_network_graph.rb
+++ b/features/steps/project/project_network_graph.rb
@@ -43,13 +43,13 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
sleep 2
end
- Then 'page should have content not cotaining "v2.1.0"' do
+ Then 'page should have content not containing "v2.1.0"' do
within '.network-graph' do
page.should have_content 'cleaning'
end
end
- Then 'page should not have content not cotaining "v2.1.0"' do
+ Then 'page should not have content not containing "v2.1.0"' do
within '.network-graph' do
page.should_not have_content 'cleaning'
end