Fix test_small_segments3 path measure test.

Review URL: https://codereview.appspot.com/6601050

git-svn-id: http://skia.googlecode.com/svn/trunk@5792 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2012-10-03 19:10:31 +00:00
parent b6e806bf17
commit 2fc2359aaa

View File

@ -18,7 +18,7 @@ static void test_small_segment3(skiatest::Reporter* reporter) {
};
path.moveTo(pts[0]);
for (size_t i = 1; i < SK_ARRAY_COUNT(pts); i += 2) {
for (size_t i = 1; i < SK_ARRAY_COUNT(pts); i += 3) {
path.cubicTo(pts[i], pts[i + 1], pts[i + 2]);
}