Skip to content

Commit

Permalink
#868: Test PerCollection model in terms of permanent ID
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Sep 1, 2020
1 parent 96a7040 commit 2835add
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/collection/test_model_per_collection.extended.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ std::unordered_map<ElementIDType, VirtualProxyType> id_proxy_map;

template <typename ColT>
void colHandler(MyMsg<ColT>*, 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) {
Expand Down

0 comments on commit 2835add

Please sign in to comment.