Skip to content

Commit 151a274

Browse files
author
Emil Gustafsson
committed
rename
Signed-off-by: Emil Gustafsson <[email protected]>
1 parent 7e01cb2 commit 151a274

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/cisco/trex/stateless/TRexClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,9 +440,9 @@ protected void removeRxFiltersWithDelay(int rxDelayMs, Port... ports) {
440440
}
441441
}
442442

443-
protected void sleepMilliSeconds(int secounds) {
443+
protected void sleepMilliSeconds(int milliSeconds) {
444444
try {
445-
Thread.sleep(secounds);
445+
Thread.sleep(milliSeconds);
446446
} catch (InterruptedException e) {
447447
// Do nothing
448448
}

0 commit comments

Comments
 (0)