Skip to content

Commit

Permalink
Resolve failing test due to parallel development
Browse files Browse the repository at this point in the history
Adopt changes of #37 to #41
  • Loading branch information
jnbt committed Nov 7, 2019
1 parent 0cf61a3 commit 430c205
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/app_store/subscription_verification_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
response = {
'status' => 0,
'latest_receipt_info' => [
{ 'item_id' => 'some_id', 'product_id' => 'product_1' },
{ 'item_id' => 'some_other_id', 'product_id' => 'product_1' },
{ 'item_id' => 'some_id', 'product_id' => 'product_2' }
{ 'item_id' => 'some_id', 'product_id' => 'product_1', 'purchase_date' => '2016-04-15 12:52:40 Etc/GMT' },
{ 'item_id' => 'some_other_id', 'product_id' => 'product_1', 'purchase_date' => '2016-04-15 12:52:40 Etc/GMT' },
{ 'item_id' => 'some_id', 'product_id' => 'product_2', 'purchase_date' => '2016-04-15 12:52:40 Etc/GMT' }
]
}
with_mocked_response(response) do
Expand Down

0 comments on commit 430c205

Please sign in to comment.