Skip to content

Commit a38efe6

Browse files
committed
#28081 Incorrect DataProvider for AsynchronousOperations
1 parent 00eaa5c commit a38efe6

File tree

1 file changed

+12
-6
lines changed
  • app/code/Magento/AsynchronousOperations/Test/Unit/Model/ResourceModel/System/Message/Collection/Synchronized

1 file changed

+12
-6
lines changed

app/code/Magento/AsynchronousOperations/Test/Unit/Model/ResourceModel/System/Message/Collection/Synchronized/PluginTest.php

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,19 @@ public function testAfterTo($operationDetails)
169169
public function afterToDataProvider()
170170
{
171171
return [
172-
['operations_successful' => 0,
173-
'operations_failed' => 0,
174-
'operations_total' => 10
172+
[
173+
[
174+
'operations_successful' => 0,
175+
'operations_failed' => 0,
176+
'operations_total' => 10
177+
]
175178
],
176-
['operations_successful' => 1,
177-
'operations_failed' => 2,
178-
'operations_total' => 10
179+
[
180+
[
181+
'operations_successful' => 1,
182+
'operations_failed' => 2,
183+
'operations_total' => 10
184+
]
179185
],
180186
];
181187
}

0 commit comments

Comments
 (0)