summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-03-11 23:03:12 +0900
committerShinya Maeda <shinya@gitlab.com>2018-03-11 23:03:12 +0900
commitfe8fbe810a284acce20b940cddfc393be4139c78 (patch)
tree1092f49156b6e33a60fb00b4df37eaa5f1267665
parent08c407cc0f9e52b6ac2aa2884bb055ccd15d70d7 (diff)
downloadgitlab-ce-fix-19_environments-invalid-environement-name.tar.gz
Fix setup script 19_environments invalid environement namefix-19_environments-invalid-environement-name
-rw-r--r--db/fixtures/development/19_environments.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/19_environments.rb b/db/fixtures/development/19_environments.rb
index c1bbc9af6d6..2edc8e7327e 100644
--- a/db/fixtures/development/19_environments.rb
+++ b/db/fixtures/development/19_environments.rb
@@ -41,7 +41,7 @@ class Gitlab::Seeder::Environments
end
def create_deployment!(project, name, ref, sha)
- environment = find_or_create_environment!(project, name)
+ environment = find_or_create_environment!(project, 'review')
environment.deployments.create!(
project: project,
ref: ref,