Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
594b43ca
Commit
594b43ca
authored
Apr 08, 2021
by
Marc Egger
Browse files
Refs #12145 Fix unit test: qfqProjectPath is computed at runtime hence there is no default value.
parent
015bad50
Pipeline
#5117
passed with stages
in 4 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Tests/Unit/Core/Store/StoreTest.php
View file @
594b43ca
...
...
@@ -448,7 +448,8 @@ class StoreTest extends TestCase {
# The following won't be checked by content, cause they will change on different installations.
foreach
([
SYSTEM_SESSION_TIMEOUT_SECONDS
,
SYSTEM_QFQ_LOG_PATHFILENAME
,
SYSTEM_SQL_LOG_PATHFILENAME
,
SYSTEM_MAIL_LOG_PATHFILENAME
,
SYSTEM_FILE_MAX_FILE_SIZE
]
as
$key
)
{
SYSTEM_SQL_LOG_PATHFILENAME
,
SYSTEM_MAIL_LOG_PATHFILENAME
,
SYSTEM_FILE_MAX_FILE_SIZE
,
SYSTEM_QFQ_PROJECT_PATH
]
as
$key
)
{
$this
->
assertTrue
(
isset
(
$config
[
$key
]),
"Missing default value for '
$key
' "
);
unset
(
$config
[
$key
]);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment