Skip to content

Commit

Permalink
Fix typo in test output
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jul 25, 2023
1 parent dccfadf commit 81427f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/read_frame.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void processExtensions(const podio::Frame& event, int iEvent, podio::version::Ve
void checkVecMemSubsetColl(const podio::Frame& event) {
const auto& subsetColl = event.get<ExampleWithVectorMemberCollection>("VectorMemberSubsetColl");
const auto& origColl = event.get<ExampleWithVectorMemberCollection>("WithVectorMember");
ASSERT(subsetColl.isSubsetCollection(), "subset collection not read back as a sbuset collection");
ASSERT(subsetColl.isSubsetCollection(), "subset collection not read back as a subset collection");
ASSERT(subsetColl.size() == 1, "subset collection should have size 1");
ASSERT(subsetColl[0] == origColl[0], "subset coll does not have the right contents");
}
Expand Down

0 comments on commit 81427f9

Please sign in to comment.