Skip to content

Commit 644a2e0

Browse files
authored
[DEVREL-103] "paymentrails" => "trolley"
2 parents 2396b4a + 91688a9 commit 644a2e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (process.env.NODE_ENV === "test") {
1818
/**
1919
* Create a client for the Trolley JavasScript API
2020
* ```
21-
* const client = paymentrails.connect({
21+
* const client = trolley.connect({
2222
* key: "MY_PUBLIC_KEY",
2323
* secret: "MY_PRIVATE_KEY",
2424
* });

test/integration/helpers/integrationTestsHelpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as paymentrails from "../../../lib";
1+
import * as trolley from "../../../lib";
22
import * as nock from "nock";
33

4-
export const testingApiClient = paymentrails.connect({
4+
export const testingApiClient = trolley.connect({
55
key: process.env.TROLLEY_ACCESS_KEY,
66
secret: process.env.TROLLEY_SECRET_KEY,
77
environment: process.env.TROLLEY_ENVIRONMENT as any,

test/unit/batchSpec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Configuration, Batch } from "../../lib";
2-
import { BatchGateway } from "../../lib/PaymentRails/BatchGateway";
2+
import { BatchGateway } from "../../lib/BatchGateway";
33

44
import * as assert from "assert";
55
import * as sinon from "sinon";

0 commit comments

Comments
 (0)