Correctly return line counts in the FileDiffCollectionMixin
Review Request #10099 — Created July 24, 2018 and submitted — Latest diff uploaded
The
FileDiffCollectionMixin
incorrectly assumed that counts would
always be integers. However, before chunks are generated, some line
counts may beNone
. This patch works around that limitation and
returns the correct result for that case. Unit tests have been added to
test this behaviour.
Ran unit tests.