Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pvanbuijtene committed Jul 24, 2023
1 parent 970ef32 commit 52c5150
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public abstract class SecurityFixture : EventStoreClientFixture {
public EventStoreUserManagementClient UserManagementClient { get; }

protected SecurityFixture() {
// make sure credentials aren't changing the test results./
Settings.DefaultCredentials = null;
UserManagementClient = new EventStoreUserManagementClient(Settings);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ await self.WarmUpWith(async cancellationToken => {
// the read from leader above is not enough to guarantee the next write goes to leader
await self.AppendToStreamAsync($"warmup", StreamState.Any, Enumerable.Empty<EventData>(),
cancellationToken: cancellationToken);
userCredentials: TestCredentials.Root, cancellationToken: cancellationToken);
});
}

Expand Down

0 comments on commit 52c5150

Please sign in to comment.