File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
tests/PHPUnit/Integration/Tracker Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 2020use Piwik \Tracker \Request ;
2121use Piwik \Tracker \RequestProcessor ;
2222use Piwik \Tracker \Visit \VisitProperties ;
23+ use Piwik \Version ;
2324
2425/**
2526 * @group Core
@@ -106,9 +107,9 @@ public function getTestModeData(): iterable
106107 'manipulateRequest ' ,
107108 'handleRequest ' ,
108109 ],
109- 'RequestProcessor ' => [
110+ 'RequestProcessor ' => version_compare (Version:: VERSION , ' 6.0.0-rc1 ' , ' < ' ) ? [
110111 'manipulateRequest ' , // currently still triggered for bc reasons
111- ],
112+ ] : [] ,
112113 ],
113114 ];
114115
@@ -133,9 +134,9 @@ public function getTestModeData(): iterable
133134 'manipulateRequest ' ,
134135 'handleRequest ' ,
135136 ],
136- 'RequestProcessor ' => [
137+ 'RequestProcessor ' => version_compare (Version:: VERSION , ' 6.0.0-rc1 ' , ' < ' ) ? [
137138 'manipulateRequest ' , // currently still triggered for bc reasons
138- ],
139+ ] : [] ,
139140 ],
140141 ];
141142
You can’t perform that action at this time.
0 commit comments