diff --git a/InvenTree/part/test_api.py b/InvenTree/part/test_api.py index f93eb6604d..64ae616720 100644 --- a/InvenTree/part/test_api.py +++ b/InvenTree/part/test_api.py @@ -103,7 +103,7 @@ class PartAPITest(APITestCase): If provided, parts are provided for ANY child category (recursive) """ url = reverse('api-part-list') - data = {'category': 1} + data = {'category': 1, 'cascade': True} # Now request to include child categories response = self.client.get(url, data, format='json')