diff options
author | Sanad Liaquat <sliaquat@gitlab.com> | 2018-10-25 13:11:19 +0500 |
---|---|---|
committer | Sanad Liaquat <sliaquat@gitlab.com> | 2018-10-25 13:11:19 +0500 |
commit | f49034ba4962e924cac9d803a5fbe07b8057a632 (patch) | |
tree | 3e27b79da36b0e74cb7c0ef9faa487cd2cb5e37e /qa/spec/scenario | |
parent | d67be3aa20d90d48f755b6178d7ce8923f6674ed (diff) | |
download | gitlab-ce-f49034ba4962e924cac9d803a5fbe07b8057a632.tar.gz |
Rename SSL to TLS
Diffstat (limited to 'qa/spec/scenario')
-rw-r--r-- | qa/spec/scenario/test/integration/ldap_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qa/spec/scenario/test/integration/ldap_spec.rb b/qa/spec/scenario/test/integration/ldap_spec.rb index 9019c6562b6..b6d798bf504 100644 --- a/qa/spec/scenario/test/integration/ldap_spec.rb +++ b/qa/spec/scenario/test/integration/ldap_spec.rb @@ -1,17 +1,17 @@ # frozen_string_literal: true -describe QA::Scenario::Test::Integration::LDAPNoSSL do +describe QA::Scenario::Test::Integration::LDAPNoTLS do context '#perform' do it_behaves_like 'a QA scenario class' do - let(:tags) { [:ldap_no_ssl] } + let(:tags) { [:ldap_no_tls] } end end end -describe QA::Scenario::Test::Integration::LDAPSSL do +describe QA::Scenario::Test::Integration::LDAPTLS do context '#perform' do it_behaves_like 'a QA scenario class' do - let(:tags) { [:ldap_ssl] } + let(:tags) { [:ldap_tls] } end end end |