Skip to content

Commit

Permalink
fix: Correct formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arttonoyan committed Nov 28, 2024
1 parent bab85e7 commit f5418de
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ public async Task VerifyFeatureFlagBehaviorAcrossServiceLifetimesAsync(string us
default:
throw new ArgumentOutOfRangeException(nameof(serviceLifetime), serviceLifetime, null);
}
});
}).ConfigureAwait(true);

var client = server.CreateClient();
var requestUri = $"/features/{userId}/flags/{FeatureA}";

// Act
var response = await client.GetAsync(requestUri);
var responseContent = await response.Content.ReadFromJsonAsync<FeatureFlagResponse<bool>>();
var response = await client.GetAsync(requestUri).ConfigureAwait(true);
var responseContent = await response.Content.ReadFromJsonAsync<FeatureFlagResponse<bool>>().ConfigureAwait(true); ;

// Assert
response.IsSuccessStatusCode.Should().BeTrue("Expected HTTP status code 200 OK.");
Expand Down

0 comments on commit f5418de

Please sign in to comment.