From f5131c2b46c38f7aebd696701d7359791d0aebcd Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 20 Aug 2015 13:57:36 -0600 Subject: [PATCH] More indent --- tests/unit/utils/event_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/utils/event_test.py b/tests/unit/utils/event_test.py index e9f9294cb2..38f6b1f6c1 100644 --- a/tests/unit/utils/event_test.py +++ b/tests/unit/utils/event_test.py @@ -251,9 +251,9 @@ class TestSaltEvent(TestCase): with eventpublisher_process(): me1 = event.MasterEvent(SOCK_DIR, listen=True) me2 = event.MasterEvent(SOCK_DIR, listen=True) - # We need to sleep here to avoid a race condition wherein - # the second socket may not be connected by the time the first socket - # sends the event. + # We need to sleep here to avoid a race condition wherein + # the second socket may not be connected by the time the first socket + # sends the event. time.sleep(0.5) me1.fire_event({'data': 'foo1'}, 'evt1') evt1 = me1.get_event(tag='evt1')