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 'spec/helpers/ssh_keys_helper_spec.rb')
-rw-r--r--spec/helpers/ssh_keys_helper_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/ssh_keys_helper_spec.rb b/spec/helpers/ssh_keys_helper_spec.rb
index 522331090e4..dbb141e41cc 100644
--- a/spec/helpers/ssh_keys_helper_spec.rb
+++ b/spec/helpers/ssh_keys_helper_spec.rb
@@ -11,7 +11,7 @@ RSpec.describe SshKeysHelper do
quoted_allowed_algorithms = allowed_algorithms.map { |name| "'#{name}'" }
- expected_string = Gitlab::Utils.to_exclusive_sentence(quoted_allowed_algorithms)
+ expected_string = Gitlab::Sentence.to_exclusive_sentence(quoted_allowed_algorithms)
expect(ssh_key_allowed_algorithms).to eq(expected_string)
end