File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import nock from "nock" ;
2
2
import { createClient } from "../__mocks__/base" ;
3
3
import Client from "../client" ;
4
- import ClassicIntegration from "../services/payment " ;
4
+ import { PaymentAPI } from "../services" ;
5
5
import { payment } from "../typings" ;
6
6
import HttpClientException from "../httpClient/httpClientException" ;
7
7
import { PaymentResult } from "../typings/payment/paymentResult" ;
8
8
9
9
let client : Client ;
10
- let classicIntegration : ClassicIntegration ;
10
+ let classicIntegration : PaymentAPI ;
11
11
let scope : nock . Scope ;
12
12
13
13
beforeEach ( ( ) : void => {
@@ -16,7 +16,7 @@ beforeEach((): void => {
16
16
}
17
17
client = createClient ( ) ;
18
18
scope = nock ( "https://pal-test.adyen.com/pal/servlet/Payment/v68" ) ;
19
- classicIntegration = new ClassicIntegration ( client ) ;
19
+ classicIntegration = new PaymentAPI ( client ) ;
20
20
} ) ;
21
21
22
22
afterEach ( ( ) => {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export { default as DataProtectionAPI } from "./dataProtection";
9
9
export { default as DisputesAPI } from "./disputes" ;
10
10
export { default as LegalEntityManagementAPI } from "./legalEntityManagement" ;
11
11
export { default as ManagementAPI } from "./management" ;
12
- export { default as PaymentAPI } from "./paymentApi " ;
12
+ export { default as PaymentAPI } from "./payment " ;
13
13
export { default as PaymentsAppAPI } from "./paymentsApp" ;
14
14
export { default as PayoutAPI } from "./payout" ;
15
15
export { default as Platforms } from "./platforms" ;
You can’t perform that action at this time.
0 commit comments