Skip to content

Commit

Permalink
Merge pull request #13 from yourivdlans/fix-redirect-issue
Browse files Browse the repository at this point in the history
Fixed redirect issue, thanks @yourivdlans
  • Loading branch information
marceldegraaf authored Aug 19, 2021
2 parents b77acd5 + d7f8036 commit 197572a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/sisow/api/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Sisow
module Api
class Request

BASE_URI = "http://www.sisow.nl/Sisow/iDeal/RestHandler.ashx"
BASE_URI = "https://www.sisow.nl/Sisow/iDeal/RestHandler.ashx"

attr_writer :merchant_id,
:merchant_key
Expand Down
2 changes: 1 addition & 1 deletion spec/models/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

it "should point to the base URI of the Sisow API" do
request = Sisow::Api::Request.new
request.send(:base_uri).should == "http://www.sisow.nl/Sisow/iDeal/RestHandler.ashx"
request.send(:base_uri).should == "https://www.sisow.nl/Sisow/iDeal/RestHandler.ashx"
end

it "should perform properly" do
Expand Down

0 comments on commit 197572a

Please sign in to comment.