diff options
| author | Markus Reiter | 2017-10-03 08:29:20 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-10-03 08:29:20 +0200 |
| commit | a92b6318eb9895ed962612c26abbf0c3f25ce09a (patch) | |
| tree | 1ac1f68de0a0db784c3cff658ee264eb45ac79bb /Library/Homebrew/test/cask/dsl | |
| parent | 23da0aa7fb91c68807e1278b2f858beefe5ea35a (diff) | |
| download | brew-a92b6318eb9895ed962612c26abbf0c3f25ce09a.tar.bz2 | |
Remove `UnderscoreSupportingURI`.
Diffstat (limited to 'Library/Homebrew/test/cask/dsl')
| -rw-r--r-- | Library/Homebrew/test/cask/dsl/appcast_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/cask/dsl/appcast_spec.rb b/Library/Homebrew/test/cask/dsl/appcast_spec.rb index ccc6a4633..bf703eba2 100644 --- a/Library/Homebrew/test/cask/dsl/appcast_spec.rb +++ b/Library/Homebrew/test/cask/dsl/appcast_spec.rb @@ -4,7 +4,7 @@ describe Hbc::DSL::Appcast do subject { described_class.new(url, params) } let(:url) { "http://example.com" } - let(:uri) { Hbc::UnderscoreSupportingURI.parse(url) } + let(:uri) { URI(url) } let(:params) { {} } describe "#to_s" do |
