Skip to content

Commit 9770fc6

Browse files
author
d.kovalenko
committed
[test] formatting [flake8]
1 parent e083d02 commit 9770fc6

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

tests/TestConfigProp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class TestConfigPropNames:
1111
# fmt: off
12-
TEST_CFG__NO_CLEANUP = "TEST_CFG__NO_CLEANUP"
13-
TEST_CFG__TEMP_DIR = "TEST_CFG__TEMP_DIR"
14-
TEST_CFG__LOG_DIR = "TEST_CFG__LOG_DIR"
12+
TEST_CFG__NO_CLEANUP = "TEST_CFG__NO_CLEANUP" # noqa: E221
13+
TEST_CFG__TEMP_DIR = "TEST_CFG__TEMP_DIR" # noqa: E221
14+
TEST_CFG__LOG_DIR = "TEST_CFG__LOG_DIR" # noqa: E221
1515
# fmt: on
1616

1717

tests/core/configuration/read_utils/ReadUtils/Unpack_StrList2/test_set001__common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,22 +114,22 @@ def __init__(self, d: str, s: str, r: list[str]):
114114
tagData002(
115115
"two_items",
116116
"biha,proxima",
117-
["biha","proxima"]
117+
["biha", "proxima"]
118118
),
119119
tagData002(
120120
"mix001",
121121
"\"biha,\",\" p\nroxima\"",
122-
["biha,"," p\nroxima"]
122+
["biha,", " p\nroxima"]
123123
),
124124
tagData002(
125125
"mix002",
126126
"\"\"\"biha,\"\"\",\"\"\" p\nroxima\",\"\",\" \"",
127-
["\"biha,\"","\" p\nroxima",""," "]
127+
["\"biha,\"", "\" p\nroxima", "", " "]
128128
),
129129
tagData002(
130130
"check_unique",
131131
"a,a,a,b,a,c,d,a",
132-
["a","b","c","d"]
132+
["a", "b", "c", "d"]
133133
),
134134
# fmt: on
135135
]

tests/implementation/v00/configuration_std/Objects/PostgresConfigurationReader_Base/LoadConfigurationFile/test_set001__common.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ def test_001__comment_and_options(self, request: pytest.FixtureRequest):
7777

7878
with open(filePath, "x") as f:
7979
# fmt: off
80-
f.write("#It is a test configuration file\n") # 0
81-
f.write("port=123 #It is a port\n") # 1
82-
f.write("\n") # 2
83-
f.write("listen_addresses='*' #addresses\n") # 3
84-
f.write("\n") # 4
80+
f.write("#It is a test configuration file\n") # 0
81+
f.write("port=123 #It is a port\n") # 1
82+
f.write("\n") # 2
83+
f.write("listen_addresses='*' #addresses\n") # 3
84+
f.write("\n") # 4
8585
f.flush()
8686
# fmt: on
8787

0 commit comments

Comments
 (0)