Skip to content

Commit

Permalink
Update after merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyandrewmeyer committed Sep 18, 2024
1 parent a179166 commit d40bdfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3834,14 +3834,14 @@ def test_set_content_then_info(self, model: ops.Model, fake_script: FakeScript):

calls = fake_script.calls(clear=True)
assert calls == [
['secret-set', f'secret://{model._backend.model_uuid}/q', ANY],
['secret-set', f'secret://{model._backend.model_uuid}/q', mock.ANY],
['secret-get', f'secret://{model._backend.model_uuid}/q', '--peek', '--format=json'],
[
'secret-set',
f'secret://{model._backend.model_uuid}/q',
'--description',
description,
ANY,
mock.ANY,
],
]
# For this test we don't need to check that the content was in the temporary file, but we
Expand Down Expand Up @@ -3871,7 +3871,7 @@ def test_set_info_then_content(self, model: ops.Model, fake_script: FakeScript):
f'secret://{model._backend.model_uuid}/q',
'--description',
description,
ANY,
mock.ANY,
],
]
# For this test we don't need to check that the content was in the temporary file, but we
Expand Down

0 comments on commit d40bdfa

Please sign in to comment.