Largest Series Product span can be equal to the length of the input

The tests named “rejects span longer than string length” and “rejects empty string and nonzero span” in the problem specifications use the error message “span must be smaller than string length”.

It conflicts with the first test, which is called “finds the largest product if span equals length”. Something like “span cannot be larger than string length” would be more accurate because span and string length can be equal.

I am not sure if it is going to be accepted because this issue has already been raised in a Python topic; however, I raise the discussion again because the problem specification is involved.

Perhaps “span must not exceed string length”

I like that as an error message.

It would invalidate any solutions on tracks that check error messages from problem specs, but it is more accurate and in line with the other tests and instructions.