Skip to content

Commit afc1937

Browse files
fix: rename misleading command test names
Renamed to accurately reflect what they verify: - Forwards_Commands_In_Session_Create -> Session_With_Commands_Creates_Successfully - Forwards_Commands_In_Session_Resume -> Session_With_Commands_Resumes_Successfully Actual forwarding verification is in the multi-client test Client_Receives_Commands_Changed_When_Another_Client_Joins_With_Commands which proves the server received the commands by checking the commands.changed event on another client.
1 parent d5fd57d commit afc1937

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dotnet/test/CommandsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CommandsTests(E2ETestFixture fixture, ITestOutputHelper output)
1212
: E2ETestBase(fixture, "commands", output)
1313
{
1414
[Fact]
15-
public async Task Forwards_Commands_In_Session_Create()
15+
public async Task Session_With_Commands_Creates_Successfully()
1616
{
1717
var session = await CreateSessionAsync(new SessionConfig
1818
{
@@ -31,7 +31,7 @@ public async Task Forwards_Commands_In_Session_Create()
3131
}
3232

3333
[Fact]
34-
public async Task Forwards_Commands_In_Session_Resume()
34+
public async Task Session_With_Commands_Resumes_Successfully()
3535
{
3636
var session1 = await CreateSessionAsync();
3737
var sessionId = session1.SessionId;

0 commit comments

Comments
 (0)