Skip to content

Commit 0a6ee87

Browse files
refactor: fix naming style violations
Co-authored-by: 沈星繁 <ikesnowy@outlook.com>
1 parent c95903f commit 0a6ee87

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/Cnblogs.Architecture.IntegrationTests/DaprTests.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ public DaprTests(DddWebTestFactory factory)
1414
}
1515

1616
[Fact]
17-
public async Task Dapr_subscribe_endpoint_is_ok()
17+
public async Task Dapr_SubscribeEndpoint_OkAsync()
1818
{
19+
// Act
1920
var response = await _httpClient.GetAsync("/dapr/subscribe");
20-
response.StatusCode.Should().Be(HttpStatusCode.OK);
2121

22+
// Assert
23+
response.StatusCode.Should().Be(HttpStatusCode.OK);
2224
var responseText = await response.Content.ReadAsStringAsync();
2325
responseText.Should().Contain("pubsub");
2426
}

0 commit comments

Comments
 (0)