diff options
Diffstat (limited to 'tests/auth.py')
-rw-r--r-- | tests/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth.py b/tests/auth.py index a74c1f2c..52544e88 100644 --- a/tests/auth.py +++ b/tests/auth.py @@ -537,7 +537,7 @@ class AuthStrategy_: with raises(TypeError): self.strat.authenticate() result = self.strat.authenticate(self.transport) - self.strat.get_sources.assert_called_once_with(self.transport) + self.strat.get_sources.assert_called_once_with() self.source.authenticate.assert_called_once_with(self.transport) assert isinstance(result, AuthResult) assert result.strategy is self.strat |