Fix assertation

This commit is contained in:
Matthias 2022-05-15 01:15:00 +02:00
parent 6660069f45
commit 76f92003fd
No known key found for this signature in database
GPG Key ID: AB6D0E6C4CB65093

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):