2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

Fix assertation

This commit is contained in:
Matthias
2022-05-15 01:15:00 +02:00
parent 6660069f45
commit 76f92003fd

View File

@ -49,7 +49,7 @@ class ExampleScheduledTaskPluginTests(TestCase):
self.assertEqual(call_function('schedule', 'member_func'), False)
# Check with wrong key
self.assertEqual(call_function('does_not_exsist', 'member_func'), '')
self.assertEqual(call_function('does_not_exsist', 'member_func'), None)
class ScheduledTaskPluginTests(TestCase):