File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ mssql-cli -S localhost -d AdventureWorks
167
167
Set environment variable MSSQL_CLI_PASSWORD to set a default password.
168
168
169
169
` ` ` bash
170
- set MSSQL_CLI_PASSWORD=abc123
170
+ set MSSQL_CLI_PASSWORD=[PLACEHOLDER]
171
171
mssql-cli -S localhost -d AdventureWorks -U sa
172
172
` ` `
173
173
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def setUpClass(cls):
33
33
list (client .execute_query ('CREATE FUNCTION {0}() \
34
34
RETURNS TABLE AS RETURN (select 1 as number);'
35
35
.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 \' '
37
37
.format (cls .login )))
38
38
finally :
39
39
shutdown (client )
You can’t perform that action at this time.
0 commit comments