commit | 2fc2359aaa8807606854f44a3f38c836a03977cd | [log] [tgz] |
---|---|---|
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Oct 03 19:10:31 2012 +0000 |
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Oct 03 19:10:31 2012 +0000 |
tree | 99e2793a2b6c4d78733125fd66c9978fc506c56d | |
parent | b6e806bf17ffcca0c147a7dab4fba104fe928a58 [diff] [blame] |
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
diff --git a/tests/PathMeasureTest.cpp b/tests/PathMeasureTest.cpp index 211eb11..e8477c6 100644 --- a/tests/PathMeasureTest.cpp +++ b/tests/PathMeasureTest.cpp
@@ -18,7 +18,7 @@ }; 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]); }