Skip to content

Commit 375a5ac

Browse files
committed
linter
1 parent 5bf234e commit 375a5ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/python_testing/test_testing/TestDecorators.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,18 +219,18 @@ def main():
219219
read_resp = get_clusters([0, 1])
220220
ok = test_runner.run_test_with_mock_read(read_resp, hooks)
221221
if not ok:
222-
failures.append(f"Test case failure: test_checkers")
222+
failures.append("Test case failure: test_checkers")
223223

224224
test_runner.set_test('TestDecorators.py', 'TestDecorators', 'test_endpoints')
225225
read_resp = get_clusters([0, 1])
226226
ok = test_runner.run_test_with_mock_read(read_resp, hooks)
227227
if not ok:
228-
failures.append(f"Test case failure: test_endpoints")
228+
failures.append("Test case failure: test_endpoints")
229229

230230
read_resp = get_clusters([0])
231231
ok = test_runner.run_test_with_mock_read(read_resp, hooks)
232232
if not ok:
233-
failures.append(f"Test case failure: test_endpoints")
233+
failures.append("Test case failure: test_endpoints")
234234

235235
test_name = 'test_whole_node_with_pics'
236236
test_runner.set_test('TestDecorators.py', 'TestDecorators', test_name)

0 commit comments

Comments
 (0)