Skip to content

Commit 490465c

Browse files
[DIST-20437] removed the commented lines and change the message inside changelog file
1 parent 6b26737 commit 490465c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 2.4.14
22

3-
- Correct Query Parameters for Amazon sp-api [#98](https://github.com/patterninc/muffin_man/pull/98)
3+
- Fixed query params of Amazon Finances API v2024-06-19 [#98](https://github.com/patterninc/muffin_man/pull/98)
44
- [#99](https://github.com/patterninc/muffin_man/pull/99)
55

66
# 2.4.13

spec/support/finances/stub_finances.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# frozen_string_literal: true
22

33
def stub_list_financial_transactions(posted_after:, posted_before: nil)
4-
# stub_request(:get, "https://#{hostname}/finances/2024-06-19/transactions?postedAfter=#{posted_after}")
5-
# .to_return(status: 200, body: File.read("./spec/support/finances/list_transactions.json"), headers: {})
64
url = "https://#{hostname}/finances/2024-06-19/transactions?postedAfter=#{posted_after}"
75
url += "&postedBefore=#{posted_before}" if posted_before
86
stub_request(:get, url)

0 commit comments

Comments
 (0)