summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-05-24 15:52:33 -0400
committerJeff Forcier <jeff@bitprophet.org>2023-05-24 15:52:43 -0400
commit098eea5d97a9985d7ab965d8b7ab8425781ebb5e (patch)
treebdb88bfabc6c1ad4eefc8c864e5003105db2952f /tests
parentfdb08b7cb94d9edb547790a20ca28cfd45d20c53 (diff)
AuthStrategy get_sources doesn't need transport arg anymore
Diffstat (limited to 'tests')
-rw-r--r--tests/auth.py2
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