@@ -981,7 +981,7 @@ def print_help(self):
981981 print (" All valid and unique HTTP responses will be saved in this directory" )
982982 print (" -dir, --directory = results | etc." )
983983 print ("DUMP" )
984- print (" Dump all the test cases in the output file without running them" )
984+ print (" Dump all the test records in the output file without running them" )
985985 print (" -dmp, --dump" )
986986 print ("DEBUG" )
987987 print (" Debug output" )
@@ -1134,20 +1134,20 @@ def __parse_request_timeout(self, value):
11341134
11351135 def __parse_repeat (self , value ):
11361136 if not value .isdigit ():
1137- self .__error ("Number of total HTTP requests to send must be numeric" )
1137+ self .__error ("Number of total HTTP requests must be numeric" )
11381138 else :
11391139 value = int (value )
11401140 if value <= 0 :
1141- self .__error ("Number of total HTTP requests to send must be greater than zero" )
1141+ self .__error ("Number of total HTTP requests must be greater than zero" )
11421142 return value
11431143
11441144 def __parse_threads (self , value ):
11451145 if not value .isdigit ():
1146- self .__error ("Number of parallel threads to run must be numeric" )
1146+ self .__error ("Number of parallel threads must be numeric" )
11471147 else :
11481148 value = int (value )
11491149 if value <= 0 :
1150- self .__error ("Number of parallel threads to run must be greater than zero" )
1150+ self .__error ("Number of parallel threads must be greater than zero" )
11511151 return value
11521152
11531153 def __parse_user_agent (self , value ):
@@ -1177,7 +1177,7 @@ def __parse_status_codes(self, value):
11771177
11781178 def __parse_directory (self , value ):
11791179 if not os .path .isdir (value ):
1180- self .__error ("Output directory does not exists or is not a directory" )
1180+ self .__error ("Output directory does not exist or is not a directory" )
11811181 return value
11821182
11831183# ----------------------------------------
0 commit comments