Skip to content

Commit 01bdd21

Browse files
committed
Fix validation-test args
1 parent a2e7202 commit 01bdd21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/misc/validation-test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ def print_small_summary(mismatches: List[Mismatch]):
337337

338338
parser.add_argument('-q', '--quiet', action='store_true',
339339
help='Only print mismatch info, and only if there are mismatches')
340-
parser.add_argument('--no-summarize-largest-cost-difference', action='store_false',
340+
parser.add_argument('--no-summarize-largest-cost-difference', action='store_true',
341341
help='Do not summarize the mismatches with the biggest difference in cost')
342-
parser.add_argument('--no-summarize-smallest-mismatches', action='store_false',
342+
parser.add_argument('--no-summarize-smallest-mismatches', action='store_true',
343343
help='Do not summarize the mismatches with the smallest region size')
344344

345345
parser.add_argument('--num-largest-cost-mismatches-print', type=int, default=10,

0 commit comments

Comments
 (0)