We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4793f42 commit 7331c0eCopy full SHA for 7331c0e
1 file changed
tests/unit/dbt_cli/test_cli_integration.py
@@ -15,6 +15,7 @@ def test_dbt_command_execution(self, mock_popen):
15
"""
16
# Mock setup
17
mock_process = MagicMock()
18
+ mock_process.returncode = 0
19
mock_process.communicate.return_value = ("command output", None)
20
mock_popen.return_value = mock_process
21
0 commit comments