diff --git a/landscape/client/tests/test_configuration.py b/landscape/client/tests/test_configuration.py index 28df9089..9dda91fe 100644 --- a/landscape/client/tests/test_configuration.py +++ b/landscape/client/tests/test_configuration.py @@ -1533,7 +1533,11 @@ def test_register_insecure_id( mock_setup.assert_called_once() mock_input.assert_not_called() - mock_set_secure_id.assert_called_once_with(mock.ANY, mock.ANY, 10) + mock_set_secure_id.assert_called_once_with( + mock.ANY, + "fake-secure-id", + 10, + ) @mock.patch("landscape.client.configuration.input") @mock.patch("landscape.client.configuration.attempt_registration")