log_test.py: cosmetic follow-up

This is kept separate to not clutter up previous patch
I5f9b53150f2bb6fa9d63ce27f0806f0ca6a45e90.

Change-Id: I0ce50375fdb028da96c2159d577d8ed1967d4fe6
diff --git a/selftest/log_test.py b/selftest/log_test.py
index 9136906..889a8a5 100755
--- a/selftest/log_test.py
+++ b/selftest/log_test.py
@@ -45,7 +45,6 @@
         super().__init__(log.C_TST, *name_items, **detail_items)
 
 t = LogTest('some', 'name', some="detail")
-
 	
 t.log("hello log")
 t.err("hello err")
@@ -86,8 +85,6 @@
 log.style_change(origin=True)
 t.dbg("add origin")
 
-# some space to keep source line numbers identical to previous code
-
 print('- Testing origin_width')
 t = LogTest('shortname')
 log.style(origin_width=23, time_fmt=fake_time)
@@ -97,7 +94,6 @@
 t.dbg("long origin str dbg")
 t.err("long origin str err")
 
-
 print('- Testing log.Origin with omitted info')
 t = LogTest()
 t.log("hello log, name implicit from class name")
@@ -105,6 +101,7 @@
 t = LogTest('explicit_name')
 t._set_log_category(None)
 t.log("hello log, no category set")
+
 t = LogTest()
 t._set_log_category(None)
 t.log("hello log, no category nor name set")