diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-11 11:31:19 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-11 11:31:19 +0200 |
commit | c0b9d4e6c6c745fa613a15000f877c358d3127c6 (patch) | |
tree | 6ebc5a9ed17d3b7eaa728fab3c7e307cf940df24 | |
parent | 847db56c6b5d2156d27990d73a9949507693985a (diff) | |
download | bundler-c0b9d4e6c6c745fa613a15000f877c358d3127c6.tar.gz |
Remove unnecessary test filter
Since it covers the whole range we support.
-rw-r--r-- | spec/commands/info_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/info_spec.rb b/spec/commands/info_spec.rb index 375ac01986..aa6b237d50 100644 --- a/spec/commands/info_spec.rb +++ b/spec/commands/info_spec.rb @@ -104,7 +104,7 @@ RSpec.describe "bundle info" do expect(out).to include("foo (1.0 #{sha[0..6]})") end - it "handles when a version is a '-' prerelease", :rubygems => "2.1" do + it "handles when a version is a '-' prerelease" do @git = build_git("foo", "1.0.0-beta.1", :path => lib_path("foo")) install_gemfile <<-G gem "foo", "1.0.0-beta.1", :git => "#{lib_path("foo")}" |