Skip to content

Commit 63c0f53

Browse files
p-bystritskyamenk
authored andcommitted
#18624: Static test fix.
1 parent 21d5e9b commit 63c0f53

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
/**
1212
* Class CachePlugin
13+
*
1314
* Should add design exceptions o identifier for built-in cache
1415
*/
1516
class CacheIdentifierPlugin

app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
/**
1313
* Class CacheIdentifierPluginTest
14+
*
1415
* Test for plugin to identifier to work with design exceptions
1516
*/
1617
class CacheIdentifierPluginTest extends \PHPUnit\Framework\TestCase
@@ -97,7 +98,8 @@ public function afterGetValueDataProvider()
9798
'Built-in + PageCache enabled' => [Config::BUILT_IN, true, null, false, false],
9899
'Built-in, PageCache enabled, no user-agent exceptions' =>
99100
[Config::BUILT_IN, true, 'aa123aa', false, 'aa123aa'],
100-
'Built-in, PageCache enabled, with design exception' => [Config::BUILT_IN, true, 'aa123aa', '7', 'DESIGN=7|aa123aa']
101+
'Built-in, PageCache enabled, with design exception' =>
102+
[Config::BUILT_IN, true, 'aa123aa', '7', 'DESIGN=7|aa123aa']
101103
];
102104
}
103105

0 commit comments

Comments
 (0)