We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8fda2a commit 28482ecCopy full SHA for 28482ec
test/test_estimates_api.py
@@ -36,7 +36,9 @@ def test_create_and_retrieve_mass_estimate(self):
36
"""
37
mass_g = 100
38
project_id = "pro_test_2b67b11a030b66e0a6dd61a56b49079a"
39
- estimate = self.api.create_mass_estimate(mass_g=mass_g, project_id=project_id)
+ estimate = self.api.create_mass_estimate(
40
+ mass_g=mass_g, project_id=project_id, create_order=True
41
+ )
42
self.assertTrue(estimate)
43
self.assertEqual(estimate.data.order.mass_g, mass_g)
44
0 commit comments