fix: #18 clean up patch

Fix white space changes.

End of file newline has been re-added and and some unnecessary whitespace changes have been reverted
This commit is contained in:
Storsorken 2023-03-07 19:36:47 +01:00
parent 5887d03058
commit 17a2cc2c90

View file

@ -109,9 +109,11 @@ class TestScriptDB(TestCase):
# Check the script is not recreated as a side-effect
self.assertFalse(self.scr in ScriptDB.objects.get_all_scripts())
class TestExtendedLoopingCall(TestCase):
"""
Test the ExtendedLoopingCall class.
"""
@mock.patch("evennia.scripts.scripts.LoopingCall")
@ -275,4 +277,3 @@ class TestMonitorHandler(TestCase):
"""Remove attribute from the handler and assert that it is gone"""
self.handler.remove(obj,fieldname,idstring=idstring,category=category)
self.assertEquals(self.handler.monitors[index][name], {})