File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
framework/Magento/TestFramework/Listener
testsuite/Magento/ConfigurableImportExport/Model Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ protected function endClass($name)
296
296
protected function doEndClass ()
297
297
{
298
298
foreach ($ this ->tests as $ name => $ data ) {
299
- $ check = $ data ['failure ' ] == 0 ? ' [x] ' : ' [ ] ' ;
299
+ $ check = $ data ['failure ' ] == 0 ? ' - [x] ' : ' - [ ] ' ;
300
300
$ this ->write (
301
301
"\n" . $ check . $ name . ($ data ['failure ' ] + $ data ['success ' ] ==
302
302
0 ? ' (skipped) ' : '' ) . ($ data ['time ' ] > 1 ? ' - ' . number_format (
Original file line number Diff line number Diff line change @@ -94,4 +94,21 @@ public function importReplaceDataProvider()
94
94
}
95
95
return $ data ;
96
96
}
97
+
98
+ /**
99
+ * @magentoAppArea adminhtml
100
+ * @magentoDbIsolation enabled
101
+ * @magentoAppIsolation enabled
102
+ *
103
+ * @param array $fixtures
104
+ * @param string[] $skus
105
+ * @param string[] $skippedAttributes
106
+ * @dataProvider importReplaceDataProvider
107
+ */
108
+ public function testImportReplace ($ fixtures , $ skus , $ skippedAttributes = [])
109
+ {
110
+ $ this ->markTestSkipped ('MAGETWO-56530s ' );
111
+ parent ::testImportReplace ($ fixtures , $ skus , $ skippedAttributes );
112
+ }
113
+
97
114
}
You can’t perform that action at this time.
0 commit comments