unit-test: Fix PEP8 E265 violations
E265: block comment should start with '# '
Change-Id: Ifa01313ac2a8e1795123f703f29d95bcb39b2119
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index da576a0..db1655b 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -896,10 +896,10 @@
check_call_cmd('meson', 'test', '-C', 'build',
'--logbase', 'testlog-ubasan')
# TODO: Fix memory sanitizer
- #check_call_cmd('meson', 'configure', 'build',
- # '-Db_sanitize=memory')
- #check_call_cmd('meson', 'test', '-C', 'build'
- # '--logbase', 'testlog-msan')
+ # check_call_cmd('meson', 'configure', 'build',
+ # '-Db_sanitize=memory')
+ # check_call_cmd('meson', 'test', '-C', 'build'
+ # '--logbase', 'testlog-msan')
check_call_cmd('meson', 'configure', 'build',
'-Db_sanitize=none', '-Db_lundef=true')
else: