Commit 8ca9bf1d authored by Douwe Maan's avatar Douwe Maan

Fix variable name and change copy

parent 80543e0a
......@@ -63,7 +63,7 @@ module Files
end
if !project.empty_repo? && different_branch? && repository.branch_exists?(@branch_name)
raise ValidationError, 'Branch with such name already exists. You need to switch to this branch in order to make changes'
raise ValidationError, "A branch called #{@branch_name} already exists. Switch to that branch in order to make changes"
end
end
......
......@@ -56,7 +56,7 @@ class GitOperationService
start_project: repository.project,
&block)
start_branch ||= branch_name
start_branch_name ||= branch_name
verify_start_branch_exists!(start_project.repository, start_branch_name)
......@@ -154,7 +154,7 @@ class GitOperationService
def verify_start_branch_exists!(start_repository, start_branch_name)
return if start_repository.empty_repo?
return if start_repository.branch_exists?(start_branch_name)
raise ArgumentError, "Cannot find branch #{start_branch_name} in #{start_repository.path_with_namespace}"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment