Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2ef22d16
Commit
2ef22d16
authored
Feb 01, 2021
by
Carsten Rose
Browse files
Refs #11931: Fix unit test
parent
409ad9a7
Pipeline
#4930
passed with stages
in 4 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Tests/Unit/Core/Store/StoreTest.php
View file @
2ef22d16
...
...
@@ -239,7 +239,7 @@ class StoreTest extends TestCase {
$this
->
store
=
Store
::
getInstance
(
''
,
true
);
foreach
([
STORE_SIP
,
STORE_CLIENT
,
STORE_EXTRA
]
AS
$store
)
{
foreach
([
STORE_SIP
,
STORE_CLIENT
,
STORE_EXTRA
]
as
$store
)
{
// initial set
$this
->
store
->
setVar
(
'unitTest'
,
'123'
,
$store
);
$this
->
assertEquals
(
'123'
,
$this
->
store
->
getVar
(
'unitTest'
,
$store
),
"Retrieve var."
);
...
...
@@ -353,6 +353,7 @@ class StoreTest extends TestCase {
SYSTEM_THROW_GENERAL_ERROR
=>
'no'
,
SYSTEM_SQL_LOG_MODE
=>
SQL_LOG_MODE_MODIFY
,
SYSTEM_SHOW_DEBUG_INFO
=>
SYSTEM_SHOW_DEBUG_INFO_AUTO
,
SYSTEM_REPORT_MIN_PHP_VERSION
=>
SYSTEM_REPORT_MIN_PHP_VERSION_AUTO
,
SYSTEM_DB_INIT
=>
'set names utf8'
,
SYSTEM_DB_UPDATE
=>
SYSTEM_DB_UPDATE_AUTO
,
SYSTEM_DB_INDEX_DATA
=>
'1'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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