We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dad318 commit f112ef3Copy full SHA for f112ef3
1 file changed
test/org/apache/coyote/http2/TestRfc9218.java
@@ -78,7 +78,8 @@ public void testPriority() throws Exception {
78
// Add 1k to the connection window. Should be used for stream 17.
79
sendWindowUpdate(0, 1024);
80
parser.readFrame();
81
- Assert.assertEquals("17-Body-1024\n", output.getTrace());
+ trace = output.getTrace();
82
+ Assert.assertEquals("17-Body-1024\n", trace);
83
System.out.println(trace);
84
output.clearTrace();
85
@@ -94,7 +95,8 @@ public void testPriority() throws Exception {
94
95
96
97
- Assert.assertEquals("21-Body-1024\n", output.getTrace());
98
99
+ Assert.assertEquals("21-Body-1024\n", trace);
100
101
102
0 commit comments