mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
ErrorPageTest: Reset env state
Otherwise SapphireTest will complain, see 0da70dafa457564a6adb02140ffeb5dd01f3a982
This commit is contained in:
parent
8e7802f8a1
commit
f2a9f9aa0a
@ -18,7 +18,8 @@ class ErrorPageTest extends FunctionalTest {
|
||||
$this->tmpAssetsPath = sprintf('%s/_tmp_assets_%s', TEMP_FOLDER, rand());
|
||||
Filesystem::makeFolder($this->tmpAssetsPath . '/ErrorPageTest');
|
||||
ErrorPage::config()->static_filepath = $this->tmpAssetsPath . '/ErrorPageTest';
|
||||
|
||||
|
||||
$this->origEnvType = Config::inst()->get('Director', 'environment_type');
|
||||
Config::inst()->update('Director', 'environment_type', 'live');
|
||||
}
|
||||
|
||||
@ -29,6 +30,8 @@ class ErrorPageTest extends FunctionalTest {
|
||||
|
||||
Filesystem::removeFolder($this->tmpAssetsPath . '/ErrorPageTest');
|
||||
Filesystem::removeFolder($this->tmpAssetsPath);
|
||||
|
||||
Config::inst()->update('Director', 'environment_type', $this->origEnvType);
|
||||
}
|
||||
|
||||
public function test404ErrorPage() {
|
||||
|
Loading…
Reference in New Issue
Block a user