We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9944bff commit 94ff943Copy full SHA for 94ff943
1 file changed
Applications/Backend/Tests/Integration/Endpoints/ClientEndpointTests.cs
@@ -162,9 +162,9 @@ public async Task WhenPutClientsWithValidData_ShouldUpdateClientSuccessfully()
162
163
/* arrange: prepare request to update client */
164
var payload = _fixture.Build<ClientUpdateScheme>()
165
- .With(update => update.Name, $"updated-client-{Guid.NewGuid()}")
166
- .With(update => update.Flows, [Grant.AuthorizationCode])
167
- .With(update => update.RedirectUris, ["https://localhost/callback"])
+ .With(client => client.Name, $"updated-client-{Guid.NewGuid()}")
+ .With(client => client.Flows, [Grant.AuthorizationCode])
+ .With(client => client.RedirectUris, ["https://localhost/callback"])
168
.Create();
169
170
/* act: send PUT request to update client */
0 commit comments