aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/MatrixTest.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-05-20 10:36:50 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-20 10:36:50 -0700
commite76ca8b9c25672be79b670514a7fe0bceadd35e6 (patch)
tree690a811203e8a529580212782b197dadc8d9061f /tests/MatrixTest.cpp
parent82ad93c356d8c010e1260224c86ce6f74359a2da (diff)
gyp (third_party) warning changes for ccache
Also fix a broken unit test in MatrixTest.cpp. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2002663002 Review-Url: https://codereview.chromium.org/2002663002
Diffstat (limited to 'tests/MatrixTest.cpp')
-rw-r--r--tests/MatrixTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MatrixTest.cpp b/tests/MatrixTest.cpp
index 1399bf277f..2f91ccae97 100644
--- a/tests/MatrixTest.cpp
+++ b/tests/MatrixTest.cpp
@@ -42,7 +42,7 @@ static bool are_equal(skiatest::Reporter* reporter,
if (0 == aVal && 0 == bVal && aValI != bValI) {
foundZeroSignDiff = true;
} else {
- REPORTER_ASSERT(reporter, aVal == bVal && aValI == aValI);
+ REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI);
}
}
REPORTER_ASSERT(reporter, foundZeroSignDiff);