diff --git a/core/modules/book/src/Tests/BookInstallTest.php b/core/modules/book/src/Tests/BookInstallTest.php deleted file mode 100644 index ba70a9b..0000000 --- a/core/modules/book/src/Tests/BookInstallTest.php +++ /dev/null @@ -1,48 +0,0 @@ -drupalCreateContentType(['type' => 'book']); - - // Install the Book module. - try { - $this->container->get('module_installer')->install(['book']); - } - catch (PreExistingConfigException $e) { - $this->fail("Expected exception thrown trying to install Book module: " . $e->getMessage()); - } - } - -} diff --git a/core/modules/book/tests/src/Functional/BookInstallTest.php b/core/modules/book/tests/src/Functional/BookInstallTest.php new file mode 100644 index 0000000..9155ce4 --- /dev/null +++ b/core/modules/book/tests/src/Functional/BookInstallTest.php @@ -0,0 +1,48 @@ +drupalCreateContentType(['type' => 'book']); + + // Install the Book module. + try { + $this->container->get('module_installer')->install(['book']); + } + catch (PreExistingConfigException $e) { + $this->fail("Expected exception thrown trying to install Book module: " . $e->getMessage()); + } + } + +}