Skip to content

Commit

Permalink
#517: remove extraneous commas
Browse files Browse the repository at this point in the history
  • Loading branch information
nlslatt authored and lifflander committed Oct 28, 2019
1 parent 52c3ade commit 4245ccb
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion tests/unit/collection/test_broadcast.cc
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ using CollectionTestTypes = testing::Types<
>;

INSTANTIATE_TYPED_TEST_CASE_P(
test_bcast, TestBroadcast, CollectionTestTypes,
test_bcast, TestBroadcast, CollectionTestTypes
);

}}} // end namespace vt::tests::unit
4 changes: 2 additions & 2 deletions tests/unit/collection/test_construct.cc
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ using CollectionTestDistTypes = testing::Types<
>;

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_simple, TestConstruct, CollectionTestTypes,
test_construct_simple, TestConstruct, CollectionTestTypes
);

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_distributed_simple, TestConstructDist, CollectionTestDistTypes,
test_construct_distributed_simple, TestConstructDist, CollectionTestDistTypes
);

}}} // end namespace vt::tests::unit
2 changes: 1 addition & 1 deletion tests/unit/collection/test_construct_idx_fst.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ using CollectionTestTypes = testing::Types<
#if backend_check_enabled(detector) && backend_check_enabled(cons_multi_idx)

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_idx_fst, TestConstruct, CollectionTestTypes,
test_construct_idx_fst, TestConstruct, CollectionTestTypes
);

#endif /*backend_check_enabled(detector)*/
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/collection/test_construct_idx_snd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ using CollectionTestTypes = testing::Types<
#if backend_check_enabled(detector) && backend_check_enabled(cons_multi_idx)

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_idx_snd, TestConstruct, CollectionTestTypes,
test_construct_idx_snd, TestConstruct, CollectionTestTypes
);

#endif /*backend_check_enabled(detector)*/
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/collection/test_construct_no_idx.cc
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ using CollectionTestTypes = testing::Types<
>;

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_no_idx, TestConstruct, CollectionTestTypes,
test_construct_no_idx, TestConstruct, CollectionTestTypes
);

INSTANTIATE_TYPED_TEST_CASE_P(
test_construct_no_idx_dist, TestConstructDist, CollectionTestTypes,
test_construct_no_idx_dist, TestConstructDist, CollectionTestTypes
);

}}} // end namespace vt::tests::unit
2 changes: 1 addition & 1 deletion tests/unit/collection/test_index_types.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ using CollectionTestTypes = testing::Types<
>;

INSTANTIATE_TYPED_TEST_CASE_P(
test_collection_index, TestCsollectionIndexTypes, CollectionTestTypes,
test_collection_index, TestCsollectionIndexTypes, CollectionTestTypes
);

}}} // end namespace vt::tests::unit
4 changes: 2 additions & 2 deletions tests/unit/collection/test_send.cc
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ using CollectionTestTypes = testing::Types<
>;

INSTANTIATE_TYPED_TEST_CASE_P(
test_collection_send, TestCollectionSend, CollectionTestTypes,
test_collection_send, TestCollectionSend, CollectionTestTypes
);
INSTANTIATE_TYPED_TEST_CASE_P(
test_collection_send_mem, TestCollectionSendMem, CollectionTestTypes,
test_collection_send_mem, TestCollectionSendMem, CollectionTestTypes
);

}}} // end namespace vt::tests::unit
2 changes: 1 addition & 1 deletion tests/unit/location/test_location.cc
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ REGISTER_TYPED_TEST_CASE_P /* NOLINT */ (
test_route_entity, test_entity_cache_hits, test_entity_cache_migrated_entity
);
INSTANTIATE_TYPED_TEST_CASE_P /* NOLINT */ (
Message, TestLocationRoute, location::MsgType,
Message, TestLocationRoute, location::MsgType
);

}}} // end namespace vt::tests::unit
6 changes: 3 additions & 3 deletions tests/unit/memory/test_memory_active.cc
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ using MsgSerial = testing::Types<
TestMemoryActiveMsg<TestStaticBytesSerialMsg>::TestMsgC
>;

INSTANTIATE_TYPED_TEST_CASE_P(test_mem_short, TestMemoryActive, MsgShort, );
INSTANTIATE_TYPED_TEST_CASE_P(test_mem_normal, TestMemoryActive, MsgNormal, );
INSTANTIATE_TYPED_TEST_CASE_P(test_mem_serial, TestMemoryActive, MsgSerial, );
INSTANTIATE_TYPED_TEST_CASE_P(test_mem_short, TestMemoryActive, MsgShort );
INSTANTIATE_TYPED_TEST_CASE_P(test_mem_normal, TestMemoryActive, MsgNormal );
INSTANTIATE_TYPED_TEST_CASE_P(test_mem_serial, TestMemoryActive, MsgSerial );

}}} // end namespace vt::tests::unit

0 comments on commit 4245ccb

Please sign in to comment.