diff --git a/tests/unit/collection/test_broadcast.cc b/tests/unit/collection/test_broadcast.cc index 0f717d269c..e8e0ef5cbd 100644 --- a/tests/unit/collection/test_broadcast.cc +++ b/tests/unit/collection/test_broadcast.cc @@ -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 diff --git a/tests/unit/collection/test_construct.cc b/tests/unit/collection/test_construct.cc index f171cc2442..09aab90e45 100644 --- a/tests/unit/collection/test_construct.cc +++ b/tests/unit/collection/test_construct.cc @@ -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 diff --git a/tests/unit/collection/test_construct_idx_fst.cc b/tests/unit/collection/test_construct_idx_fst.cc index 9de3d2ab61..db9fd335bb 100644 --- a/tests/unit/collection/test_construct_idx_fst.cc +++ b/tests/unit/collection/test_construct_idx_fst.cc @@ -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)*/ diff --git a/tests/unit/collection/test_construct_idx_snd.cc b/tests/unit/collection/test_construct_idx_snd.cc index f84fd9941b..eefcace05f 100644 --- a/tests/unit/collection/test_construct_idx_snd.cc +++ b/tests/unit/collection/test_construct_idx_snd.cc @@ -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)*/ diff --git a/tests/unit/collection/test_construct_no_idx.cc b/tests/unit/collection/test_construct_no_idx.cc index 810da21cb2..ded364a723 100644 --- a/tests/unit/collection/test_construct_no_idx.cc +++ b/tests/unit/collection/test_construct_no_idx.cc @@ -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 diff --git a/tests/unit/collection/test_index_types.cc b/tests/unit/collection/test_index_types.cc index 096bd236be..b3bef4acdd 100644 --- a/tests/unit/collection/test_index_types.cc +++ b/tests/unit/collection/test_index_types.cc @@ -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 diff --git a/tests/unit/collection/test_send.cc b/tests/unit/collection/test_send.cc index affdf185d6..8792ae5b25 100644 --- a/tests/unit/collection/test_send.cc +++ b/tests/unit/collection/test_send.cc @@ -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 diff --git a/tests/unit/location/test_location.cc b/tests/unit/location/test_location.cc index 1eab586bc4..850b859b4a 100644 --- a/tests/unit/location/test_location.cc +++ b/tests/unit/location/test_location.cc @@ -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 diff --git a/tests/unit/memory/test_memory_active.cc b/tests/unit/memory/test_memory_active.cc index cdbbd1cd0c..fcb3a9fe3a 100644 --- a/tests/unit/memory/test_memory_active.cc +++ b/tests/unit/memory/test_memory_active.cc @@ -160,8 +160,8 @@ using MsgSerial = testing::Types< TestMemoryActiveMsg::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