test/utils/aws_test.rb in symmetric-encryption-4.1.0.beta1 vs test/utils/aws_test.rb in symmetric-encryption-4.1.0

- old
+ new

@@ -34,11 +34,11 @@ end end describe '#create_master_key' do it 'creates a new master key' do - skip "Only run if really needed, gets tested once as part of the CMK auto-create" + skip 'Only run if really needed, gets tested once as part of the CMK auto-create' aws.delete_master_key(retention_days: 7) aws.create_master_key end end @@ -66,10 +66,9 @@ encrypted = aws.encrypt(message) decrypted = aws.decrypt(encrypted) assert_equal message, decrypted end end - end end end end