Skip to content

Commit 7b3ea81

Browse files
committed
fix: use URI.open instead of Kernel.open
1 parent 9f71d74 commit 7b3ea81

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/pact/provider/help/pact_diff.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
module Pact
22
module Provider
33
module Help
4-
54
class PactDiff
6-
75
class PrintPactDiffError < StandardError; end
86

97
attr_reader :pact_json, :output
@@ -52,7 +50,7 @@ def diff_url
5250

5351
def get_diff
5452
begin
55-
open(diff_url) { | file | file.read }
53+
URI.open(diff_url) { | file | file.read }
5654
rescue StandardError => e
5755
raise PrintPactDiffError.new("Tried to retrieve diff with previous pact from #{diff_url}, but received response code #{e}.")
5856
end

0 commit comments

Comments
 (0)