Skip to content

Commit

Permalink
fixed str
Browse files Browse the repository at this point in the history
  • Loading branch information
fireflowmert committed Aug 13, 2024
1 parent 67cbf5b commit 2298fa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/EndUserManagement/testUserEndpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def test_user_update(self):
responseData = responseForFetchedUser.json()
userFetched = responseData['data']
userFetched = userFetched['ID']
print("fetched id " + userFetched)
print("fetched id " + str(userFetched))
#set url
patchUserUrl = self.baseServerUrl + "/users/" + userFetched # Replace '1' with the actual user ID you want to update
patchUserUrl = self.baseServerUrl + "/users/" + str(userFetched) # Replace '1' with the actual user ID you want to update

# Set the headers, including the Authorization token
getUserHeaders = {
Expand Down

0 comments on commit 2298fa6

Please sign in to comment.