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>2015-04-02 23:28:23 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-04-02 23:28:23 +0300
commitf8f9750323b47d6d9d3c65936a4dfe87fe0c2a60 (patch)
tree0ede0c31d4389b8a2881a854c95cda80158d4127 /features
parent24b048db59143cf7c9c6bdd85192b1ae8845868f (diff)
parent45ee9009f54da2e538bfe4f27d3f9a084fbb39c4 (diff)
Merge branch 'username-period' into 'master'
Don't allow username to end in period. The current behavior doesn't do username referencing and mentioning in sentences like "I discussed with with @douwe." since `douwe.` is matched as a username. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2174. See merge request !438
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/source/browse_files.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/source/browse_files.rb b/features/steps/project/source/browse_files.rb
index 557555aee58..caf6c73ee06 100644
--- a/features/steps/project/source/browse_files.rb
+++ b/features/steps/project/source/browse_files.rb
@@ -74,7 +74,7 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
end
step 'I fill the new file name with an illegal name' do
- fill_in :file_name, with: '.git'
+ fill_in :file_name, with: 'Spaces Not Allowed'
end
step 'I fill the commit message' do