Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/test_estimates_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_create_and_retrieve_mass_estimate(self):
"""
mass_g = 100
project_id = "pro_test_2b67b11a030b66e0a6dd61a56b49079a"
estimate = self.api.create_mass_estimate(mass_g=mass_g, project_id=project_id)
estimate = self.api.create_mass_estimate(mass_g=mass_g, project_id=project_id, create_order=True)
self.assertTrue(estimate)
self.assertEqual(estimate.data.order.mass_g, mass_g)

Expand Down