[TEST] Fix issue with HttpInfo passed invalid parameter
HttpInfo is passed the maxContentLength as a parameter, but this value should never be negative. This fixes the test to only pass a positive random value.
This commit is contained in:
parent
b4c78019b0
commit
7df66abaf5
|
@ -137,7 +137,7 @@ public class NodeInfoStreamingTests extends ESTestCase {
|
|||
new TransportAddress[]{buildNewFakeTransportAddress()}, buildNewFakeTransportAddress());
|
||||
profileAddresses.put("test_address", dummyBoundTransportAddress);
|
||||
TransportInfo transport = randomBoolean() ? null : new TransportInfo(dummyBoundTransportAddress, profileAddresses);
|
||||
HttpInfo httpInfo = randomBoolean() ? null : new HttpInfo(dummyBoundTransportAddress, randomLong());
|
||||
HttpInfo httpInfo = randomBoolean() ? null : new HttpInfo(dummyBoundTransportAddress, randomNonNegativeLong());
|
||||
|
||||
PluginsAndModules pluginsAndModules = null;
|
||||
if (randomBoolean()) {
|
||||
|
|
Loading…
Reference in New Issue