From eb46b0924f916191a79d59b3ebc1d24a945e2171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 31 May 2024 12:22:14 +0200 Subject: [PATCH] [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 --- spec/bundler/support/filters.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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