We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unit test
1 parent fa4c094 commit 986140cCopy full SHA for 986140c
coriolisclient/tests/cli/test_endpoint_instances.py
@@ -134,6 +134,7 @@ def test_take_action(
134
args.marker = mock.sentinel.marker
135
args.limit = mock.sentinel.limit
136
args.name = mock.sentinel.name
137
+ args.refresh = mock.sentinel.refresh
138
mock_endpoints = mock.Mock()
139
mock_ei = mock.Mock()
140
self.mock_app.client_manager.coriolis.endpoints = mock_endpoints
@@ -152,7 +153,8 @@ def test_take_action(
152
153
mock_get_option_value_from_args.return_value,
154
mock.sentinel.marker,
155
mock.sentinel.limit,
- mock.sentinel.name
156
+ mock.sentinel.name,
157
+ refresh=mock.sentinel.refresh,
158
)
159
mock_list_objects.assert_called_once_with(mock_ei.list.return_value)
160
0 commit comments