diff options
| author | Hiroyuki Sato <sathiroyuki@gmail.com> | 2013-08-21 19:20:29 +0900 |
|---|---|---|
| committer | Hiroyuki Sato <sathiroyuki@gmail.com> | 2013-08-21 19:20:29 +0900 |
| commit | 1101ceb3f4dfb8983f5876215378331a2d9bcc88 (patch) | |
| tree | b307e3ffde36f149bcbfcc033390ad7e09485c6e /features | |
| parent | 5f24bdb7d067df9204e08e126f43c071116089b0 (diff) | |
| download | gitlab-ce-1101ceb3f4dfb8983f5876215378331a2d9bcc88.tar.gz | |
A little improvement
1. Replace params key 'q' with 'extended_sha1'. A extended SHA1 syntax is explained in 'man gitrevisions'.
2. Change the placeholder of looking for commit.
3. Change the label of ref filter.
Diffstat (limited to 'features')
| -rw-r--r-- | features/steps/project/project_network_graph.rb | 4 |
1 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 b3be2a48ecc..57015f76626 100644 --- a/features/steps/project/project_network_graph.rb +++ b/features/steps/project/project_network_graph.rb @@ -76,7 +76,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps When 'I looking for a commit by SHA of "v2.1.0"' do within ".content .search" do - fill_in 'q', with: '98d6492' + fill_in 'extended_sha1', with: '98d6492' find('button').click end sleep 2 @@ -90,7 +90,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps When 'I look for a commit by ";"' do within ".content .search" do - fill_in 'q', with: ';' + fill_in 'extended_sha1', with: ';' find('button').click end end |
