Skip to content

Commit

Permalink
resolve test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
delulu committed Nov 4, 2019
1 parent 26f9b5f commit 66da62f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion locust/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def parse_options():
# Number of clients to incease by Step
parser.add_argument(
'--step-clients',
type='int',
type=int,
default=1,
help="Client count to increase by step in Step Load mode. Only used together with --step-load"
)
Expand Down
2 changes: 1 addition & 1 deletion locust/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .stats import distribution_csv, failures_csv, median_from_dict, requests_csv, sort_stats
from .util.cache import memoize
from .util.rounding import proper_round
from .util.time import parse_timespan
from .util.timespan import parse_timespan

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 66da62f

Please sign in to comment.