Skip to content

Commit 0073ca0

Browse files
ro-mo-doclaude
andcommitted
Fix test assertions to match increased timeout
Update `test_returns_token_and_instance_url` to expect `timeout=120` instead of `timeout=30`, matching the change in _run_sf_command. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bc07b3e commit 0073ca0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/io/reader/test_sf_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_returns_token_and_instance_url(self, reader):
9999
capture_output=True,
100100
text=True,
101101
check=True,
102-
timeout=30,
102+
timeout=120,
103103
)
104104
mock_run.assert_any_call(
105105
[
@@ -114,7 +114,7 @@ def test_returns_token_and_instance_url(self, reader):
114114
capture_output=True,
115115
text=True,
116116
check=True,
117-
timeout=30,
117+
timeout=120,
118118
)
119119

120120
def test_file_not_found_raises_runtime_error(self, reader):

0 commit comments

Comments
 (0)