From 2835add6501ee80825261265804bf3a3c7d8ae49 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Tue, 1 Sep 2020 18:14:03 -0400 Subject: [PATCH] #868: Test PerCollection model in terms of permanent ID --- tests/unit/collection/test_model_per_collection.extended.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/collection/test_model_per_collection.extended.cc b/tests/unit/collection/test_model_per_collection.extended.cc index 83d0755919..174a2ef262 100644 --- a/tests/unit/collection/test_model_per_collection.extended.cc +++ b/tests/unit/collection/test_model_per_collection.extended.cc @@ -90,9 +90,9 @@ std::unordered_map id_proxy_map; template void colHandler(MyMsg*, ColT* col) { - // do nothing, except setting up our map using the temp ID, which will hit + // do nothing, except setting up our map using the object ID, which will hit // every node - id_proxy_map[col->getTempID()] = col->getProxy(); + id_proxy_map[col->getElmID()] = col->getProxy(); } TEST_F(TestModelPerCollection, test_model_per_collection_1) {