Modify InitializationTest to use a port of 0 instead of -1

This commit is contained in:
Charles Allen 2014-12-01 13:48:49 -08:00
parent a0d5f23ad1
commit 7ed5f995cb
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class InitializationTest
public void configure(Binder binder)
{
JsonConfigProvider.bindInstance(
binder, Key.get(DruidNode.class, Self.class), new DruidNode("test-inject", "localhost", -1)
binder, Key.get(DruidNode.class, Self.class), new DruidNode("test-inject", "localhost", 0)
);
}
}