Skip to content

Commit a15ce06

Browse files
author
Sabri Onur Tüzün
committed
optimize imports
1 parent 6193987 commit a15ce06

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/requests/CreatePeccoInitializeRequest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function CreatePeccoInitializeRequest(request) {
2424
callbackUrl: request["callbackUrl"],
2525
paymentSource: request["paymentSource"],
2626
currency: request["currency"],
27-
paidPrice: utils.formatPrice(request["paidPrice"]),
27+
paidPrice: utils.formatPrice(request["paidPrice"])
2828
});
2929
}
3030

samples/IyzipaySamples.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ describe('Iyzipay API Test', function () {
15731573
});
15741574
});
15751575
});
1576-
1576+
15771577
describe('Pecco', function () {
15781578

15791579
it('should initialize pecco', function (done) {
@@ -1648,14 +1648,14 @@ describe('Iyzipay API Test', function () {
16481648
}
16491649
]
16501650
};
1651-
1651+
16521652
iyzipay.peccoInitialize.create(peccoInitRequest, function (err, result) {
16531653
console.log(err, result);
16541654
done();
16551655
});
16561656
});
16571657

1658-
1658+
16591659
it('should auth pecco payment', function (done) {
16601660
iyzipay.peccoPayment.create({
16611661
locale: Iyzipay.LOCALE.TR,

0 commit comments

Comments
 (0)