diff --git a/tests/Classes/Backend/Form/ToolBoxTest.php b/tests/Classes/Backend/Form/ToolBoxTest.php
index 598b8604..8813012a 100644
--- a/tests/Classes/Backend/Form/ToolBoxTest.php
+++ b/tests/Classes/Backend/Form/ToolBoxTest.php
@@ -103,7 +103,7 @@ public function testCreateSelectByArrayIfReloadOption()
['reload' => true]
);
$expectedSelect = '';
- if (!TYPO3::isTYPO121OrHigher()) {
+ if (!TYPO3::isTYPO104OrHigher()) {
$expectedSelect = '';
}
@@ -147,7 +147,7 @@ public function testCreateSelectByArrayIfReloadAndOnchangeOption()
);
$expectedSelect = '';
- if (!TYPO3::isTYPO121OrHigher()) {
+ if (!TYPO3::isTYPO104OrHigher()) {
$expectedSelect = '';
}
self::assertEquals($expectedSelect, $select);