summaryrefslogtreecommitdiff
path: root/spec/xml/kit/crypto/symmetric_cipher_spec.rb
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2021-01-30 21:37:05 -0700
committermo khan <mo.khan@gmail.com>2021-01-30 21:37:05 -0700
commit9d46474008bcf7945a8c4a479852ccfd3d6fa811 (patch)
treecfeeb0065e0bc25897f117d78af80f8ced148742 /spec/xml/kit/crypto/symmetric_cipher_spec.rb
parent2bdb4a1b341160c52a39cc0d339f6f6b4514ad08 (diff)
style: fix linter errorsv0.5.0
Diffstat (limited to 'spec/xml/kit/crypto/symmetric_cipher_spec.rb')
-rw-r--r--spec/xml/kit/crypto/symmetric_cipher_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/xml/kit/crypto/symmetric_cipher_spec.rb b/spec/xml/kit/crypto/symmetric_cipher_spec.rb
index 0bf72be..534bec8 100644
--- a/spec/xml/kit/crypto/symmetric_cipher_spec.rb
+++ b/spec/xml/kit/crypto/symmetric_cipher_spec.rb
@@ -1,11 +1,11 @@
# frozen_string_literal: true
RSpec.describe ::Xml::Kit::Crypto::SymmetricCipher do
- [
- 'aes128-cbc',
- 'aes192-cbc',
- 'aes256-cbc',
- 'tripledes-cbc',
+ %w[
+ aes128-cbc
+ aes192-cbc
+ aes256-cbc
+ tripledes-cbc
].each do |algorithm|
describe algorithm do
let(:xml_algorithm) { "#{::Xml::Kit::Namespaces::XMLENC}#{algorithm}" }