Skip to content

Commit

Permalink
Fix integer for amount
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Aug 9, 2024
1 parent fc6b85e commit 3eee0c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/rails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ plans:
layers: [{ channel_slug: develop, size_slug: medium, kit_slug: web }]
pricings:
[
{ amount: 15_00, currency: USD, billing_period: monthly },
{ amount: 150_00, currency: USD, billing_period: yearly },
{ amount: 1500, currency: USD, billing_period: monthly },
{ amount: 15000, currency: USD, billing_period: yearly },
]

0 comments on commit 3eee0c8

Please sign in to comment.