diff --git a/AppCenter/AppCenterTests/MSACEncrypterTests.m b/AppCenter/AppCenterTests/MSACEncrypterTests.m index 1800f1fba..8ce4065dc 100644 --- a/AppCenter/AppCenterTests/MSACEncrypterTests.m +++ b/AppCenter/AppCenterTests/MSACEncrypterTests.m @@ -263,10 +263,12 @@ NSString *clearText = @"Test string"; // Save the key to disk. This must not change as it was used to encrypt the text. + // [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="this is not a secret")] NSString *currentKey = @"zlIS50zXq7fm2GqassShXrjkMBsdjlTsmIT+d1D3CTI="; [MSACMockKeychainUtil storeString:currentKey forKey:kMSACEncryptionKeyTagOriginal]; // This cipher text contains no metadata, and no IV was used. + // [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="this is not a secret")] NSString *cipherText = @"S6uNmq7u0eKGaU2GQPUGMQ=="; MSACEncrypter *encrypter = [MSACEncrypter new];