From e4d9fcdb30163fa5b02db27b180e56b8db722930 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 28 May 2022 18:26:15 +0200 Subject: [PATCH] fix function name --- InvenTree/stock/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/stock/test_api.py b/InvenTree/stock/test_api.py index 5012155b9e..a3c3780109 100644 --- a/InvenTree/stock/test_api.py +++ b/InvenTree/stock/test_api.py @@ -102,7 +102,7 @@ class StockItemListTest(StockAPITestCase): self.assertEqual(len(response), 12) - def test_filter_by_IPN(self): + def test_filter_by_ipn(self): """Filter StockItem by IPN reference.""" response = self.get_stock(IPN="R.CH") self.assertEqual(len(response), 3)