Skip to content

Commit

Permalink
Replace removed unittest.mock assertion (Python 3.12) (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlsmedstad authored Feb 16, 2025
1 parent aac2f54 commit 9bd9420
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Empty file modified scripts/format.sh
100644 → 100755
Empty file.
Empty file modified scripts/lint.sh
100644 → 100755
Empty file.
Empty file modified scripts/test.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion tests/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_shell_repl(completion, mock_system):
inputs = ["__sgpt__eof__", "list folder", "sort by name", "e", "exit()"]
result = runner.invoke(app, cmd_args(**args), input="\n".join(inputs))
shell = os.environ.get("SHELL", "/bin/sh")
mock_system.called_once_with(f"{shell} -c 'ls | sort'")
mock_system.assert_called_once_with(f"{shell} -c 'ls | sort'")

expected_messages = [
{"role": "system", "content": role.role},
Expand Down

0 comments on commit 9bd9420

Please sign in to comment.