From 4e85157d14528290ded795c476cd25baec52594d Mon Sep 17 00:00:00 2001 From: Ehsan Akhgari Date: Mon, 24 Jun 2013 10:57:19 -0400 Subject: [PATCH] Bug 886185 - Remove two unused variables from TestMoz2D.cpp; r=BenWa --- gfx/tests/gtest/TestMoz2D.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/tests/gtest/TestMoz2D.cpp b/gfx/tests/gtest/TestMoz2D.cpp index fdfbb8039a67..244ade7f5045 100644 --- a/gfx/tests/gtest/TestMoz2D.cpp +++ b/gfx/tests/gtest/TestMoz2D.cpp @@ -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);