Skip to content

Commit

Permalink
chore: rename AdyenApplePayModule
Browse files Browse the repository at this point in the history
  • Loading branch information
descorp committed Dec 6, 2023
1 parent ede8f7d commit 7d753b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package com.adyenreactnativesdk

import com.adyenreactnativesdk.component.applepay.AdyenApplePayModuleMock
import com.adyenreactnativesdk.component.applepay.ApplePayModuleMock
import com.adyenreactnativesdk.component.dropin.DropInModule
import com.adyenreactnativesdk.component.googlepay.GooglePayModule
import com.adyenreactnativesdk.component.instant.InstantModule
Expand All @@ -26,7 +26,7 @@ class AdyenPaymentPackage : ReactPackage {
modules.add(DropInModule(reactContext))
modules.add(InstantModule(reactContext))
modules.add(GooglePayModule(reactContext))
modules.add(AdyenApplePayModuleMock(reactContext))
modules.add(ApplePayModuleMock(reactContext))
modules.add(AdyenCSEModule(reactContext))
return modules
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.bridge.ReactMethod
import com.facebook.react.bridge.ReadableMap

class AdyenApplePayModuleMock(context: ReactApplicationContext?) : BaseModule(context) {
class ApplePayModuleMock(context: ReactApplicationContext?) : BaseModule(context) {
override fun getName(): String {
return COMPONENT_NAME
}
Expand Down

0 comments on commit 7d753b8

Please sign in to comment.