From 17a2cc2c90cacfe7d75687734868c20efceeac12 Mon Sep 17 00:00:00 2001 From: Storsorken Date: Tue, 7 Mar 2023 19:36:47 +0100 Subject: [PATCH] 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 --- evennia/scripts/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/evennia/scripts/tests.py b/evennia/scripts/tests.py index 2530e0006e..471af8746f 100644 --- a/evennia/scripts/tests.py +++ b/evennia/scripts/tests.py @@ -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], {}) - \ No newline at end of file