From bf2f3c5253a03b648f8d416ca496a5ad5a195274 Mon Sep 17 00:00:00 2001
From: Christian Kuhn <lolli@schwarzbu.ch>
Date: Fri, 6 Aug 2021 03:01:05 +0200
Subject: [PATCH] [TASK] Remove unused fixture in ext:form

The consuming test case has been dropped a
while ago, fixture removal has been forgotten.

Resolves: #94727
Releases: master
Change-Id: I3ec574a3efd200c2572a5596ae6e97a03a5a0d49
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70242
Tested-by: core-ci <typo3@b13.com>
Tested-by: Wouter Wolters <typo3@wouterwolters.nl>
Tested-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
---
 .../Configuration/Form/legacy.yaml            |  3 ---
 .../Configuration/Form/updated.form.yaml      |  3 ---
 .../Yaml/AllowedExtensionPaths.yaml           |  6 ------
 .../Fixtures/test_resources/ext_emconf.php    | 20 -------------------
 4 files changed, 32 deletions(-)
 delete mode 100644 typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/legacy.yaml
 delete mode 100644 typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/updated.form.yaml
 delete mode 100644 typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Yaml/AllowedExtensionPaths.yaml
 delete mode 100644 typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/ext_emconf.php

diff --git a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/legacy.yaml b/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/legacy.yaml
deleted file mode 100644
index a7e46dfa51d4..000000000000
--- a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/legacy.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
-type: Form
-identifier: legacy
-prototypeName: standard
diff --git a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/updated.form.yaml b/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/updated.form.yaml
deleted file mode 100644
index 345eb3b94b21..000000000000
--- a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Form/updated.form.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
-type: Form
-identifier: updated
-prototypeName: standard
diff --git a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Yaml/AllowedExtensionPaths.yaml b/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Yaml/AllowedExtensionPaths.yaml
deleted file mode 100644
index 9bb889e0effa..000000000000
--- a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/Configuration/Yaml/AllowedExtensionPaths.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
-TYPO3:
-    CMS:
-        Form:
-            persistenceManager:
-                allowedExtensionPaths:
-                    110: EXT:test_resources/Configuration/Form/
diff --git a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/ext_emconf.php b/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/ext_emconf.php
deleted file mode 100644
index 12b8ec6042ce..000000000000
--- a/typo3/sysext/form/Tests/Functional/Hooks/Fixtures/test_resources/ext_emconf.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-$EM_CONF[$_EXTKEY] = [
-    'title' => 'Test Resources',
-    'description' => 'Test Resources',
-    'category' => 'example',
-    'version' => '11.4.0',
-    'state' => 'beta',
-    'clearCacheOnLoad' => 0,
-    'author' => 'Oliver Hader',
-    'author_email' => 'oliver@typo3.org',
-    'author_company' => '',
-    'constraints' => [
-        'depends' => [
-            'typo3' => '11.4.0'
-        ],
-        'conflicts' => [],
-        'suggests' => [],
-    ],
-];
-- 
GitLab