File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 88# You must reorganize and/or add the imports so that they adhere
99# to the industry best practices for Python source code.
1010
11+ # TODO: Do not modify the implementation or CoverageItem class
12+
13+ # TODO: Do not modify the implementation or Mutant class
14+
1115import random
1216from typing import List
1317
@@ -122,7 +126,7 @@ def compute_coverage_difference(
122126
123127
124128def generate_fuzzer_values (
125- max_length = 100 , char_start : int = 32 , char_range : int = 32
129+ max_length = 100 , char_start : int = 32 , char_range : int = 32
126130) -> str :
127131 """Make string of up to max_length characters in the range [char_start, char_start + char_range)."""
128132 string_length = random .randrange (max_length , max_length + 1 )
You can’t perform that action at this time.
0 commit comments