Suppress scan warnings (#13507)

This commit is contained in:
Charles Gagnon
2020-11-20 14:28:57 -08:00
committed by GitHub
parent 815c61315c
commit 6edcbbb738
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ describe('ControllerModel', function (): void {
});
it('Reads password from cred store', async function (): Promise<void> {
const password = 'password123';
const password = 'password123'; // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="Test password, not actually used")]
// Set up cred store to return our password
const credProviderMock = TypeMoq.Mock.ofType<azdata.CredentialProvider>();