diff --git a/Neos.Neos/Tests/Behavior/Features/Fusion/ContentCollection.feature b/Neos.Neos/Tests/Behavior/Features/Fusion/ContentCollection.feature
index f2cf6d5d7ed..501533e813c 100644
--- a/Neos.Neos/Tests/Behavior/Features/Fusion/ContentCollection.feature
+++ b/Neos.Neos/Tests/Behavior/Features/Fusion/ContentCollection.feature
@@ -127,7 +127,7 @@ Feature: Tests for the "Neos.Neos:ContentCollection" Fusion prototype
include: resource://Neos.Neos/Private/Fusion/Root.fusion
prototype(Neos.Neos:Test.ContentType) < prototype(Neos.Fusion:Value) {
- value = ${q(node).id() + ' (' + node.nodeTypeName.value + ') '}
+ value = ${node.aggregateId + ' (' + node.nodeTypeName.value + ') '}
}
test = Neos.Neos:ContentCollection {
diff --git a/Neos.Neos/Tests/Behavior/Features/Fusion/FlowQuery.feature b/Neos.Neos/Tests/Behavior/Features/Fusion/FlowQuery.feature
index 6f7c427d3cb..27d4eeffc79 100644
--- a/Neos.Neos/Tests/Behavior/Features/Fusion/FlowQuery.feature
+++ b/Neos.Neos/Tests/Behavior/Features/Fusion/FlowQuery.feature
@@ -101,7 +101,7 @@ Feature: Tests for the "Neos.ContentRepository" Flow Query methods.
renderer = Neos.Fusion:Loop {
items = ${props.nodes}
itemName = 'node'
- itemRenderer = ${q(node).id()}
+ itemRenderer = ${node.aggregateId}
@glue = ','
}
}
diff --git a/Neos.Neos/Tests/Behavior/Features/Fusion/Menu.feature b/Neos.Neos/Tests/Behavior/Features/Fusion/Menu.feature
index 5e87ba4b4fa..46dfce7dbf8 100644
--- a/Neos.Neos/Tests/Behavior/Features/Fusion/Menu.feature
+++ b/Neos.Neos/Tests/Behavior/Features/Fusion/Menu.feature
@@ -101,7 +101,7 @@ Feature: Tests for the "Neos.Neos:Menu" and related Fusion prototypes
renderer = Neos.Fusion:Loop {
items = ${props.items}
itemRenderer = afx`
- {q(item.node).id()} ({item.menuLevel}){String.chr(10)}
+ {item.node.aggregateId} ({item.menuLevel}){String.chr(10)}
`
}