Skip to content

Commit

Permalink
FIX Test Space on pwsh separation
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaloog committed Jan 23, 2024
1 parent ae840a0 commit c0697cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_copy_path_to_clipboard():
"shell, expected_shell_str ",
[
("cmd", 'set "USER=TESTUSER" & set "DB=TESTDB" & set "PORT=TESTPORT"'),
("pwsh", '$env:USER="TESTUSER";$env:DB="TESTDB";$env:PORT="TESTPORT"'),
("pwsh", '$env:USER="TESTUSER" ; $env:DB="TESTDB" ; $env:PORT="TESTPORT"'),
("bash", "export USER=TESTUSER ; export DB=TESTDB ; export PORT=TESTPORT"),
("zsh", "export USER=TESTUSER ; export DB=TESTDB ; export PORT=TESTPORT"),
],
Expand Down

0 comments on commit c0697cd

Please sign in to comment.