Skip to content

Commit d7b08c7

Browse files
authored
Merge pull request #242 from GatorEducator/feature/improve-fragment-output
Add expected number of fragments to output
2 parents 08a39c2 + ca4321d commit d7b08c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gator/invoke.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,9 @@ def invoke_all_fragment_checks(
540540
+ constants.markers.Space
541541
+ fragment_diagnostic
542542
+ constants.markers.Space
543-
+ "or the output"
543+
+ "or the output while expecting "
544+
+ ("exactly " if exact else "at least ")
545+
+ str(expected_count)
544546
)
545547
report_result(met_or_exceeded_count, message, diagnostic)
546548
return met_or_exceeded_count

0 commit comments

Comments
 (0)