fix laravel 6 compartibility of tests; remove duplicated pipeline execution
This commit is contained in:
parent
61d9b59e5f
commit
478533ae60
|
|
@ -1,6 +1,6 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class Laravel5Helper extends Laravel5
|
|||
'product_id' => $product->id,
|
||||
'inventory_source_id' => 1,
|
||||
]));
|
||||
Event::fire('catalog.product.create.after', $product);
|
||||
Event::dispatch('catalog.product.create.after', $product);
|
||||
return $product;
|
||||
}
|
||||
private function createAttributeValues($id, array $attributeValues = [])
|
||||
|
|
|
|||
Loading…
Reference in New Issue