test/stripe/stripe_object_test.rb in stripe-3.26.1 vs test/stripe/stripe_object_test.rb in stripe-3.27.0

- old
+ new

@@ -116,10 +116,10 @@ assert_equal obj.class, copy_obj.class end end context "#eql?" do - should "produce the true for two equivalent Stripe objects" do + should "produce true for two equivalent Stripe objects" do obj1 = Stripe::StripeObject.construct_from(id: 1, name: "Stripe") obj2 = Stripe::StripeObject.construct_from(id: 1, name: "Stripe") assert obj1.eql?(obj2) end