Browse Source

TT#24097 Switch for loop to use the i variable

This makes it a more natural code pattern.

Change-Id: I200df650625de63ec1a7cacb05c73ee8f0c40080
changes/22/16722/6
Guillem Jover 8 years ago
parent
commit
04f57900fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/simulator-tcp.sh

+ 1
- 1
tests/simulator-tcp.sh View File

@ -17,7 +17,7 @@ port() {
ids=""
ports=""
for i in $(seq 1 1000); do
for (( i = 0 ; i < 1000 ; i++ )); do
callid=`uuid`
test -z "$callid" && exit 1
src=`ip`:`port`


Loading…
Cancel
Save