diff --git a/tests/read_frame.h b/tests/read_frame.h index 16ff9d5b5..321623b96 100644 --- a/tests/read_frame.h +++ b/tests/read_frame.h @@ -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("VectorMemberSubsetColl"); const auto& origColl = event.get("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"); }