Skip to content

Commit 53a7a8a

Browse files
Merge pull request #511 from dbcli/bavaldez/dev
Fix credscan issue
2 parents 0fa724f + 6a49ce2 commit 53a7a8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/usage_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ mssql-cli -S localhost -d AdventureWorks
167167
Set environment variable MSSQL_CLI_PASSWORD to set a default password.
168168
169169
```bash
170-
set MSSQL_CLI_PASSWORD=abc123
170+
set MSSQL_CLI_PASSWORD=[PLACEHOLDER]
171171
mssql-cli -S localhost -d AdventureWorks -U sa
172172
```
173173

tests/test_special.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def setUpClass(cls):
3333
list(client.execute_query('CREATE FUNCTION {0}() \
3434
RETURNS TABLE AS RETURN (select 1 as number);'
3535
.format(cls.function)))
36-
list(client.execute_query('CREATE LOGIN {0} WITH PASSWORD=\'yoloC123445!\''
36+
list(client.execute_query('CREATE LOGIN {0} WITH PASSWORD=\'PLACEHOLDER\''
3737
.format(cls.login)))
3838
finally:
3939
shutdown(client)

0 commit comments

Comments
 (0)