Look at [test.cpp, lines 80-81](https://github.com/dkurt/qrcode/blob/master/test.cpp#L80): ``` int counts[] = {3, 3, 10, 2, 3}; CHECK_EQ(checkRatios(&counts[0]), true); ``` This data clearly doesn't fit the intended 1:1:3:1:1 pattern, but is marked as valid. Is this an error in test case?
Look at test.cpp, lines 80-81:
This data clearly doesn't fit the intended 1:1:3:1:1 pattern, but is marked as valid. Is this an error in test case?