Bug 886185 - Remove two unused variables from TestMoz2D.cpp; r=BenWa

This commit is contained in:
Ehsan Akhgari 2013-06-24 10:57:19 -04:00
parent 0437b9a5b9
commit 4e85157d14

View File

@ -11,7 +11,7 @@
TEST(Moz2D, Point) {
TestBase* test = new TestPoint();
int failures = 0;
int totalTests = test->RunTests(&failures);
test->RunTests(&failures);
delete test;
ASSERT_EQ(failures, 0);
@ -20,7 +20,7 @@ TEST(Moz2D, Point) {
TEST(Moz2D, Scaling) {
TestBase* test = new TestScaling();
int failures = 0;
int totalTests = test->RunTests(&failures);
test->RunTests(&failures);
delete test;
ASSERT_EQ(failures, 0);