diff --git a/test-framework/common/src/main/java/io/quarkus/test/common/TestResourceManager.java b/test-framework/common/src/main/java/io/quarkus/test/common/TestResourceManager.java index ca18f00b0a814..8521d7407200a 100644 --- a/test-framework/common/src/main/java/io/quarkus/test/common/TestResourceManager.java +++ b/test-framework/common/src/main/java/io/quarkus/test/common/TestResourceManager.java @@ -326,8 +326,12 @@ public static Set testResourceCo } Set result = new HashSet<>(uniqueEntries.size()); for (TestResourceClassEntry entry : uniqueEntries) { + Map args = new HashMap<>(entry.args); + if (entry.configAnnotation != null) { + args.put("configAnnotation", entry.configAnnotation.annotationType().getName()); + } result.add(new TestResourceComparisonInfo(entry.testResourceLifecycleManagerClass().getName(), entry.getScope(), - entry.args)); + args)); } return result; }