Skip to content

Commit

Permalink
make sure we update the user
Browse files Browse the repository at this point in the history
  • Loading branch information
jochen-testingbot committed Apr 30, 2024
1 parent f0d63f6 commit 43047ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testingbotclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from requests.auth import HTTPBasicAuth
import hashlib

__version__ = '0.0.9'
__version__ = '0.1.0'

class TestingBotException(Exception):
def __init__(self, *args, **kwargs):
Expand Down Expand Up @@ -218,5 +218,5 @@ def get_user_information(self):
def update_user_information(self, newUser):
"""Update current user information"""
url = '/user'
info = self.client.put(url)
info = self.client.put(url, newUser)
return info

0 comments on commit 43047ac

Please sign in to comment.