remove unneeded assignment

This commit is contained in:
Matthias 2022-02-20 04:24:13 +01:00
parent 68d182d67b
commit 1ff6988ffd
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076
2 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ class BomUploadTest(InvenTreeAPITestCase):
self.assertIn('No part column specified', str(response.data))
response = self.post(
self.post(
url,
{
'rows': rows,

View File

@ -393,7 +393,7 @@ class StockItemTest(StockAPITestCase):
self.assertEqual(trackable_part.get_stock_count(), 0)
# This should fail, incorrect serial number count
response = self.post(
self.post(
self.list_url,
data={
'part': trackable_part.pk,