Skip to content

Commit 470173b

Browse files
committed
Fix argument prefix warning
1 parent 53e0f0a commit 470173b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/play_store/product_purchases/product_purchase_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class FakeProductPurchase
9999
:purchase_time_millis,
100100
].freeze
101101

102-
attr_accessor *FIELDS
102+
attr_accessor(*FIELDS)
103103

104104
def initialize(hash)
105105
FIELDS.each do |key|

spec/play_store/subscription_purchases/subscription_purchase_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class FakeSubscriptionPurchase
226226
:price_currency_code,
227227
].freeze
228228

229-
attr_accessor *FIELDS
229+
attr_accessor(*FIELDS)
230230

231231
def initialize(hash)
232232
FIELDS.each do |key|

0 commit comments

Comments
 (0)