chore(integration-tests): Fixed merge conflict

This commit is contained in:
olivermrbl
2022-08-25 16:04:49 +02:00
212 changed files with 6791 additions and 3775 deletions

View File

@@ -1,10 +1,10 @@
import { PaymentService } from "medusa-interfaces"
import { AbstractPaymentService } from "@medusajs/medusa"
class TestPayService extends PaymentService {
class TestPayService extends AbstractPaymentService {
static identifier = "test-pay"
constructor() {
super()
constructor(_) {
super(_)
}
async getStatus(paymentData) {