fixed various typos and variable name changes

This commit is contained in:
2021-10-17 23:27:53 -06:00
parent e4c051b8c2
commit 110281ce0a
5 changed files with 16 additions and 18 deletions
+2 -2
View File
@@ -38,10 +38,10 @@ class AuthActions(object):
def __init__(self, client):
self._client = client
def login(self, username='test', password='test'):
def login(self, username='test', email='a@.c', password='test'):
return self._client.post(
'auth/login',
data={'username': username, 'password': password}
data={'userid': username, 'email': email, 'password': password}
)
def logout(self):