diff options
author | David RodrÃguez <[email protected]> | 2024-05-31 12:22:14 +0200 |
---|---|---|
committer | git <[email protected]> | 2024-06-06 18:53:33 +0000 |
commit | eb46b0924f916191a79d59b3ebc1d24a945e2171 (patch) | |
tree | 407b2a81c223a95a756e55da93fc3cb73df66906 | |
parent | 0fb73a8eda941075533cdd109b591b746fee4c19 (diff) |
[rubygems/rubygems] Fix printing requirement based spec filters
I don't understand what was the idea of "!=" here.
https://github.com/rubygems/rubygems/commit/06d5f1dcf1
-rw-r--r-- | spec/bundler/support/filters.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/support/filters.rb b/spec/bundler/support/filters.rb index 8e164af756..e1683ae75b 100644 --- a/spec/bundler/support/filters.rb +++ b/spec/bundler/support/filters.rb @@ -14,7 +14,7 @@ class RequirementChecker < Proc attr_accessor :provided def inspect - "\"!= #{provided}\"" + "\"#{provided}\"" end end |