From 8613703d71c368b13660dcdcfc09f535adedafdc Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 28 Aug 2024 20:23:42 +0200 Subject: [PATCH] tests bugfix in comment --- .../tiny/model_return_relation/tst_model_return_relation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/functional/orm/tiny/model_return_relation/tst_model_return_relation.cpp b/tests/auto/functional/orm/tiny/model_return_relation/tst_model_return_relation.cpp index fb8eba1b9..59c4f2dd2 100644 --- a/tests/auto/functional/orm/tiny/model_return_relation/tst_model_return_relation.cpp +++ b/tests/auto/functional/orm/tiny/model_return_relation/tst_model_return_relation.cpp @@ -177,7 +177,7 @@ void tst_Model_Return_Relation:: QVERIFY(activeMap.contains(tagId)); QCOMPARE(typeid (tag), typeid (Tag_ReturnRelation *)); - /* Custom Pivot relation as the Tagged class, under the 'tagged' key + /* Basic Pivot relation as the Pivot class, under the 'pivot' key in the m_relations hash. */ QVERIFY(tag->relationLoaded("pivot")); auto *pivot = tag->getRelation("pivot"); @@ -343,7 +343,7 @@ void tst_Model_Return_Relation:: QVERIFY(activeMap.contains(tagId)); QCOMPARE(typeid (tag), typeid (Tag_ReturnRelation *)); - /* Custom Pivot relation as the Tagged class, under the 'tagged' key + /* Basic Pivot relation as the Pivot class, under the 'pivot' key in the m_relations hash. */ QVERIFY(tag->relationLoaded("pivot")); auto *pivot = tag->getRelation("pivot");