We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f71d74 commit 7b3ea81Copy full SHA for 7b3ea81
lib/pact/provider/help/pact_diff.rb
@@ -1,9 +1,7 @@
1
module Pact
2
module Provider
3
module Help
4
-
5
class PactDiff
6
7
class PrintPactDiffError < StandardError; end
8
9
attr_reader :pact_json, :output
@@ -52,7 +50,7 @@ def diff_url
52
50
53
51
def get_diff
54
begin
55
- open(diff_url) { | file | file.read }
+ URI.open(diff_url) { | file | file.read }
56
rescue StandardError => e
57
raise PrintPactDiffError.new("Tried to retrieve diff with previous pact from #{diff_url}, but received response code #{e}.")
58
end
0 commit comments