spec/support/hash.rb in acfs-1.7.0 vs spec/support/hash.rb in acfs-2.0.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true class ActiveSupport::HashWithIndifferentAccess def ==(other) if other.respond_to? :with_indifferent_access - super other.with_indifferent_access + super(other.with_indifferent_access) else super end end end