From 413e89f277ec6ba1bdf2040f5b5611f29a27a447 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Mon, 21 Oct 2013 23:53:49 -0700 Subject: Refactor ArenaBitVector to create more general BitVector Change-Id: Ib26f2884de9ce7d620048bdf5ed6dec639622e41 --- compiler/utils/dedupe_set_test.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'compiler/utils/dedupe_set_test.cc') diff --git a/compiler/utils/dedupe_set_test.cc b/compiler/utils/dedupe_set_test.cc index 03d8b961fa..2c6787b8a6 100644 --- a/compiler/utils/dedupe_set_test.cc +++ b/compiler/utils/dedupe_set_test.cc @@ -19,10 +19,6 @@ namespace art { -class DedupeSetTest : public testing::Test { - public: -}; - class DedupeHashFunc { public: size_t operator()(const std::vector& array) const { @@ -35,7 +31,7 @@ class DedupeHashFunc { return hash; } }; -TEST_F(DedupeSetTest, Test) { +TEST(DedupeSetTest, Test) { Thread* self = Thread::Current(); typedef std::vector ByteArray; DedupeSet deduplicator("test"); -- cgit v1.2.3-59-g8ed1b