Skip to content

Commit

Permalink
Fix the failing HttpObjectAggregatorTest.testInvalidConstructorUsage()
Browse files Browse the repository at this point in the history
Related: 950da2e
  • Loading branch information
trustin committed Jun 10, 2015
1 parent 88cf2ee commit 95e7c7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ public void testOversizedResponse() {

@Test(expected = IllegalArgumentException.class)
public void testInvalidConstructorUsage() {
new HttpObjectAggregator(0);
new HttpObjectAggregator(-1);
}

@Test(expected = IllegalArgumentException.class)
Expand Down

0 comments on commit 95e7c7a

Please sign in to comment.