Fix broken test due to change in function name

This commit is contained in:
Alexandre Aubin 2019-11-20 00:12:19 +01:00
parent 53ab4709d1
commit 9b475f092e

View file

@ -83,5 +83,5 @@ def test_actions_map_unknown_authenticator(monkeypatch, tmp_path):
amap = ActionsMap(BaseActionsMapParser)
with pytest.raises(ValueError) as exception:
amap.get_authenticator(profile='unknown')
amap.get_authenticator_for_profile('unknown')
assert 'Unknown authenticator' in str(exception)