Skip to content

Commit 5eae5cf

Browse files
Fix reversed expected/actual. (dotnet#36005)
1 parent bee3290 commit 5eae5cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/shared/test/Http3/Http3InMemory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public static void AssertFrameType(Http3FrameType actual, Http3FrameType expecte
255255
{
256256
if (actual != expected)
257257
{
258-
throw new InvalidOperationException($"Expected {actual} frame. Got {expected}.");
258+
throw new InvalidOperationException($"Expected {expected} frame. Got {actual}.");
259259
}
260260
}
261261

0 commit comments

Comments
 (0)