Skip to content

Commit 9400256

Browse files
committed
updated test client to match new functionality
1 parent d2c811a commit 9400256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_update_object_with_request_id(self, make_req):
128128
qb_client.update_object("Customer", "request_body", request_id="123")
129129

130130
url = "https://sandbox-quickbooks.api.intuit.com/v3/company/1234/customer"
131-
make_req.assert_called_with("POST", url, "request_body", file_path=None, params=None, request_id="123")
131+
make_req.assert_called_with("POST", url, "request_body", file_path=None, file_bytes=None, request_id="123", params=None)
132132

133133
@patch('quickbooks.client.QuickBooks.get')
134134
def test_get_current_user(self, get):

0 commit comments

Comments
 (0)