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:
Diffstat (limited to 'qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb')
-rw-r--r--qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb13
1 files changed, 3 insertions, 10 deletions
diff --git a/qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb b/qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb
index 48d08136d28..c855c5f7c74 100644
--- a/qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb
+++ b/qa/qa/specs/features/api/12_systems/gitaly/gitaly_mtls_spec.rb
@@ -20,16 +20,9 @@ module QA
push.file_content = 'First commit'
end
- Resource::Repository::Commit.fabricate_via_api! do |commit|
- commit.project = project
- commit.commit_message = second_added_commit_message
- commit.add_files(
- [{
- file_path: "file-#{SecureRandom.hex(8)}",
- content: 'Second commit'
- }]
- )
- end
+ create(:commit, project: project, commit_message: second_added_commit_message, actions: [
+ { action: 'create', file_path: "file-#{SecureRandom.hex(8)}", content: 'Second commit' }
+ ])
expect(project.commits.map { |commit| commit[:message].chomp })
.to include(intial_commit_message)