Skip to content

Commit 0610f3e

Browse files
committed
flake8
1 parent a81119a commit 0610f3e

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

tests/test_log.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1+
"""
2+
This file tests the output of executable sot-test-log compiled from
3+
tests/sot-test-log.cc.
4+
"""
15
import unittest
26
import subprocess
37
import csv
48

5-
# This file tests the output of executable sot-test-log compiled from
6-
# tests/sot-test-log.cc.
7-
#
8-
# Logs are saved in binary format in file "build/tests/test.log-vstate.log",
9-
# then converted in ascii in file "test.log-vstate-ascii.log" and then
10-
# compared to the expected values.
9+
1110
class TestLog(unittest.TestCase):
11+
"""
12+
Logs are saved in binary format in file "build/tests/test.log-vstate.log",
13+
then converted in ascii in file "test.log-vstate-ascii.log" and then
14+
compared to the expected values.
15+
"""
16+
1217
def test_log(self):
1318
subprocess.run("./sot-test-log")
1419
res = subprocess.run(

0 commit comments

Comments
 (0)