Skip to content

Commit

Permalink
fixed casing
Browse files Browse the repository at this point in the history
  • Loading branch information
msaroufim committed Oct 15, 2021
1 parent 1c7ab03 commit f713d49
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1069,8 +1069,8 @@ public void testPredictionMemoryError() throws InterruptedException {
alwaysRun = true,
dependsOnMethods = {"testPredictionMemoryError"})
public void testSuccessBatch() throws InterruptedException {
int batch_size = 4;
int max_batch_delay = 10000;
int batchSize = 4;
int maxBatchDelay = 10000;
Channel channel = TestUtils.connect(ConnectorType.MANAGEMENT_CONNECTOR, configManager);
Assert.assertNotNull(channel);

Expand All @@ -1079,7 +1079,7 @@ public void testSuccessBatch() throws InterruptedException {
TestUtils.setLatch(new CountDownLatch(1));

TestUtils.registerModel(
channel, "noop.mar", "noop", true, false, batch_size, max_batch_delay);
channel, "noop.mar", "noop", true, false, batchSize, maxBatchDelay);
TestUtils.getLatch().await();

StatusResponse status =
Expand Down

0 comments on commit f713d49

Please sign in to comment.