Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 666bfdf

Browse files
committed
Remove 'TestTests' suffix
1 parent 14e8140 commit 666bfdf

27 files changed

+27
-27
lines changed

test/binder/binder_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using std::make_tuple;
3636
namespace peloton {
3737
namespace test {
3838

39-
class BinderCorrectnessTestTests : public PelotonTest {
39+
class BinderCorrectnessTests : public PelotonTest {
4040
virtual void SetUp() override {
4141
PelotonTest::SetUp();
4242
auto catalog = catalog::Catalog::GetInstance();

test/codegen/block_nested_loop_join_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace peloton {
2222
namespace test {
2323

24-
class BlockNestedLoopJoinTranslatorTestTests : public PelotonCodeGenTest {
24+
class BlockNestedLoopJoinTranslatorTests : public PelotonCodeGenTest {
2525
public:
2626
BlockNestedLoopJoinTranslatorTest() : PelotonCodeGenTest() {
2727
// Load the test table

test/codegen/bloom_filter_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
namespace peloton {
3737
namespace test {
3838

39-
class BloomFilterCodegenTestTests : public PelotonTest {
39+
class BloomFilterCodegenTests : public PelotonTest {
4040
public:
4141
BloomFilterCodegenTest() {
4242
// Create test db

test/codegen/case_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace peloton {
2626
namespace test {
2727

28-
class CaseTranslatorTestTests : public PelotonCodeGenTest {
28+
class CaseTranslatorTests : public PelotonCodeGenTest {
2929
public:
3030
CaseTranslatorTest() : PelotonCodeGenTest(), num_rows_to_insert(64) {
3131
// Load test table

test/codegen/delete_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace peloton {
2424
namespace test {
2525

26-
class DeleteTranslatorTestTests : public PelotonCodeGenTest {
26+
class DeleteTranslatorTests : public PelotonCodeGenTest {
2727
public:
2828
DeleteTranslatorTest() : PelotonCodeGenTest() {}
2929

test/codegen/function_builder_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace peloton {
1919
namespace test {
2020

21-
class FunctionBuilderTestTests : public PelotonTest {};
21+
class FunctionBuilderTests : public PelotonTest {};
2222
TEST_F(FunctionBuilderTest, ConstructSingleFunctionTest) {
2323
// Generate a function like so:
2424
// define @test() {

test/codegen/group_by_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace peloton {
2626
namespace test {
2727

28-
class GroupByTranslatorTestTests : public PelotonCodeGenTest {
28+
class GroupByTranslatorTests : public PelotonCodeGenTest {
2929
public:
3030
GroupByTranslatorTest() : PelotonCodeGenTest() {
3131
uint32_t num_rows = 10;

test/codegen/hash_join_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace peloton {
2626
namespace test {
2727

28-
class HashJoinTranslatorTestTests : public PelotonCodeGenTest {
28+
class HashJoinTranslatorTests : public PelotonCodeGenTest {
2929
public:
3030
HashJoinTranslatorTest() : PelotonCodeGenTest() {
3131
// Load the test table

test/codegen/if_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace peloton {
2424
namespace test {
2525

26-
class IfTestTests : public PelotonTest {};
26+
class IfTests : public PelotonTest {};
2727
TEST_F(IfTest, TestIfOnlyTest) {
2828
const std::string func_name = "TestIfOnly";
2929

test/codegen/insert_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace peloton {
2323
namespace test {
2424

25-
class InsertTranslatorTestTests : public PelotonCodeGenTest {
25+
class InsertTranslatorTests : public PelotonCodeGenTest {
2626
public:
2727
InsertTranslatorTest() : PelotonCodeGenTest() {}
2828
oid_t TestTableId1() { return test_table_oids[0]; }

0 commit comments

Comments
 (0)