Fix the failing HttpObjectAggregatorTest.testInvalidConstructorUsage()

Related: 950da2eae1
This commit is contained in:
Trustin Lee 2015-06-10 12:20:50 +09:00
parent 0ca65f1373
commit b169a76d46

View File

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