From 693bf6c16653249b8c0227e74339700a247ea2a0 Mon Sep 17 00:00:00 2001 From: Alex Pliutau Date: Wed, 27 Sep 2017 17:20:09 -0500 Subject: [PATCH] Fix IT --- integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test.go b/integration_test.go index ff28907..b6b81cd 100644 --- a/integration_test.go +++ b/integration_test.go @@ -216,7 +216,7 @@ func TestCreatePayment(t *testing.T) { CancelURL: "http://..", }, } - pr, err := c.CreatePayment(p) + _, err := c.CreatePayment(p) if err != nil { t.Errorf("Error creating payment.") }