fix: remove bad defaults (#38986)

Child tables can't have a default.
This commit is contained in:
Ankush Menat
2023-12-28 14:15:40 +05:30
committed by GitHub
parent a117ef3cb8
commit b71b0d5997
3 changed files with 34 additions and 341 deletions

View File

@@ -195,7 +195,6 @@ class TestFIFOValuation(unittest.TestCase):
total_value -= sum(q * r for q, r in consumed)
self.assertTotalQty(total_qty)
self.assertTotalValue(total_value)
self.assertGreaterEqual(total_value, 0)
class TestLIFOValuation(unittest.TestCase):