Skip to content

Commit 28482ec

Browse files
authored
Future-proof the tests (#39)
* Future-proof the tests * lint
1 parent c8fda2a commit 28482ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_estimates_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def test_create_and_retrieve_mass_estimate(self):
3636
"""
3737
mass_g = 100
3838
project_id = "pro_test_2b67b11a030b66e0a6dd61a56b49079a"
39-
estimate = self.api.create_mass_estimate(mass_g=mass_g, project_id=project_id)
39+
estimate = self.api.create_mass_estimate(
40+
mass_g=mass_g, project_id=project_id, create_order=True
41+
)
4042
self.assertTrue(estimate)
4143
self.assertEqual(estimate.data.order.mass_g, mass_g)
4244

0 commit comments

Comments
 (0)