mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 05:30:29 +00:00
Bug 886185 - Remove two unused variables from TestMoz2D.cpp; r=BenWa
This commit is contained in:
parent
0437b9a5b9
commit
4e85157d14
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user