Skip to content

Commit 43047ac

Browse files
make sure we update the user
1 parent f0d63f6 commit 43047ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testingbotclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from requests.auth import HTTPBasicAuth
99
import hashlib
1010

11-
__version__ = '0.0.9'
11+
__version__ = '0.1.0'
1212

1313
class TestingBotException(Exception):
1414
def __init__(self, *args, **kwargs):
@@ -218,5 +218,5 @@ def get_user_information(self):
218218
def update_user_information(self, newUser):
219219
"""Update current user information"""
220220
url = '/user'
221-
info = self.client.put(url)
221+
info = self.client.put(url, newUser)
222222
return info

0 commit comments

Comments
 (0)