Skip to content

Commit

Permalink
bugs after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
martinothamar committed Jan 8, 2025
1 parent 1bb21ce commit cfa4c3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public async Task Post_LookupOrganisation_General_Exception_Returned_Correctly()
private HttpClient GetHttpClient()
{
HttpClient client = GetRootedClient(Org, App);
string token = PrincipalUtil.GetToken(1337, null);
string token = TestAuthentication.GetUserToken(1337);
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
return client;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public async Task Post_PersonSearch_General_Exception_Returned_Correctly()
private HttpClient GetHttpClient()
{
HttpClient client = GetRootedClient(Org, App);
string token = PrincipalUtil.GetToken(1337, null);
string token = TestAuthentication.GetUserToken(1337);
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
return client;
}
Expand Down

0 comments on commit cfa4c3a

Please sign in to comment.