Chromium Code Reviews| Index: tests/HashTest.cpp |
| diff --git a/tests/HashTest.cpp b/tests/HashTest.cpp |
| index c1bdf884d84b0e8ba14b1c7f1001d7b5ac82a783..848986162d673eb24a9b1460d12615c7dbe8e0f8 100644 |
| --- a/tests/HashTest.cpp |
| +++ b/tests/HashTest.cpp |
| @@ -42,7 +42,7 @@ DEF_TEST(HashMap, r) { |
| map.set(i, 2.0*i); |
| } |
| for (int i = 0; i < N; i++) { |
| - double* found = map.find(i);; |
| + double* found = map.find(i); |
| REPORTER_ASSERT(r, found); |
| REPORTER_ASSERT(r, *found == i*2.0); |
| } |