Skip to content

Commit

Permalink
💚 Fixes failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed May 13, 2024
1 parent f3e07f5 commit cbd1f61
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def test_get_secret(mock_run):
mock_run.assert_called_once_with(
[ANY, "read", "op://vault/item/field"],
capture_output=True,
env=ANY,
timeout=ANY,
)
assert secret == "secret value"
Expand Down Expand Up @@ -198,4 +197,4 @@ def test_command_timeout(mock_run):
with pytest.raises(TimeoutExpired):
_ = model.op_uri_secret

mock_run.assert_called_once_with(ANY, capture_output=True, env=ANY, timeout=1)
mock_run.assert_called_once_with(ANY, capture_output=True, timeout=1)

0 comments on commit cbd1f61

Please sign in to comment.