@@ -123,7 +123,7 @@ def test_update_object_with_request_id(self, make_req):
123123 qb_client .update_object ("Customer" , "request_body" , request_id = "123" )
124124
125125 url = "https://sandbox-quickbooks.api.intuit.com/v3/company/1234/customer"
126- make_req .assert_called_with ("POST" , url , "request_body" , file_path = None , file_bytes = None , request_id = "123" , params = {'minorversion' : client . QuickBooks . MINIMUM_MINOR_VERSION })
126+ make_req .assert_called_with ("POST" , url , "request_body" , file_path = None , file_bytes = None , request_id = "123" , params = {})
127127
128128 @patch ('quickbooks.client.QuickBooks.get' )
129129 def test_get_current_user (self , get ):
@@ -141,7 +141,7 @@ def test_get_report(self, make_req):
141141
142142 qb_client .get_report ("profitandloss" , {1 : 2 })
143143 url = "https://sandbox-quickbooks.api.intuit.com/v3/company/1234/reports/profitandloss"
144- expected_params = {1 : 2 , 'minorversion' : client . QuickBooks . MINIMUM_MINOR_VERSION }
144+ expected_params = {1 : 2 }
145145 make_req .assert_called_with ("GET" , url , params = expected_params )
146146
147147 @patch ('quickbooks.client.QuickBooks.make_request' )
@@ -151,7 +151,7 @@ def test_get_single_object(self, make_req):
151151
152152 qb_client .get_single_object ("test" , 1 )
153153 url = "https://sandbox-quickbooks.api.intuit.com/v3/company/1234/test/1"
154- make_req .assert_called_with ("GET" , url , {}, params = {'minorversion' : client . QuickBooks . MINIMUM_MINOR_VERSION })
154+ make_req .assert_called_with ("GET" , url , {}, params = {})
155155
156156 @patch ('quickbooks.client.QuickBooks.make_request' )
157157 def test_get_single_object_with_params (self , make_req ):
@@ -160,7 +160,7 @@ def test_get_single_object_with_params(self, make_req):
160160
161161 qb_client .get_single_object ("test" , 1 , params = {'param' :'value' })
162162 url = "https://sandbox-quickbooks.api.intuit.com/v3/company/1234/test/1"
163- make_req .assert_called_with ("GET" , url , {}, params = {'param' :'value' , 'minorversion' : client . QuickBooks . MINIMUM_MINOR_VERSION })
163+ make_req .assert_called_with ("GET" , url , {}, params = {'param' :'value' })
164164
165165 @patch ('quickbooks.client.QuickBooks.process_request' )
166166 def test_make_request (self , process_request ):
0 commit comments