2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00
This commit is contained in:
Matthias 2022-05-03 22:58:24 +02:00
parent d49f74746a
commit 096c0c876c
No known key found for this signature in database
GPG Key ID: AB6D0E6C4CB65093

View File

@ -64,7 +64,7 @@ class ScheduledTaskPluginTests(TestCase):
class WrongFuncSchedules(Base): class WrongFuncSchedules(Base):
""" """
Plugin with broken functions Plugin with broken functions
This plugin is missing a func This plugin is missing a func
""" """
@ -84,7 +84,7 @@ class ScheduledTaskPluginTests(TestCase):
class WrongFuncSchedules1(WrongFuncSchedules): class WrongFuncSchedules1(WrongFuncSchedules):
""" """
Plugin with broken functions Plugin with broken functions
This plugin is missing a schedule This plugin is missing a schedule
""" """
@ -98,11 +98,10 @@ class ScheduledTaskPluginTests(TestCase):
with self.assertRaises(MixinImplementationError): with self.assertRaises(MixinImplementationError):
WrongFuncSchedules1() WrongFuncSchedules1()
class WrongFuncSchedules2(WrongFuncSchedules): class WrongFuncSchedules2(WrongFuncSchedules):
""" """
Plugin with broken functions Plugin with broken functions
This plugin is missing a schedule This plugin is missing a schedule
""" """
@ -119,7 +118,7 @@ class ScheduledTaskPluginTests(TestCase):
class WrongFuncSchedules3(WrongFuncSchedules): class WrongFuncSchedules3(WrongFuncSchedules):
""" """
Plugin with broken functions Plugin with broken functions
This plugin has a broken schedule This plugin has a broken schedule
""" """
@ -137,7 +136,7 @@ class ScheduledTaskPluginTests(TestCase):
class WrongFuncSchedules4(WrongFuncSchedules): class WrongFuncSchedules4(WrongFuncSchedules):
""" """
Plugin with broken functions Plugin with broken functions
This plugin is missing a minute marker for its schedule This plugin is missing a minute marker for its schedule
""" """