Skip to content

Commit 6a49ce2

Browse files
committed
add placeholder in password
1 parent 378037b commit 6a49ce2

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)