2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-19 09:01:31 +00:00

Change some warnings to infos

This commit is contained in:
Oliver
2021-06-23 18:54:01 +10:00
parent 5e338dca3f
commit 2e1ad0c245
3 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ class TestParams(TestCase):
def test_str(self):
t1 = PartParameterTemplate.objects.get(pk=1)
self.assertEquals(str(t1), 'Length (mm)')
self.assertEqual(str(t1), 'Length (mm)')
p1 = PartParameter.objects.get(pk=1)
self.assertEqual(str(p1), 'M2x4 LPHS : Length = 4mm')