Skip to content

Commit a238877

Browse files
committed
test_tsp: Fix pylint warning about line too long
Split this string into two lines, without changing its value under test. Fix the nearby REQUESTED_TIME_STEP line(s) formatting in VS Code, while being there and formatting the amended file. Signed-off-by: Marco Miller <[email protected]>
1 parent f6c6bf7 commit a238877

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test_tsp.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,15 @@
3232
from tsp.response import ResponseStatus
3333
from tsp.tsp_client import TspClient
3434

35-
STATISTICS_DP_ID = "org.eclipse.tracecompass.analysis.timing.core.segmentstore.SegmentStoreStatisticsDataProvider:org.eclipse.linuxtools.lttng2.ust.analysis.callstack"
35+
STATISTICS_DP_ID = (
36+
"org.eclipse.tracecompass.analysis.timing.core.segmentstore.SegmentStoreStatisticsDataProvider:"
37+
"org.eclipse.linuxtools.lttng2.ust.analysis.callstack"
38+
)
3639
REQUESTED_TIME_START = 1332170682440133097
3740
REQUESTED_TIME_END = 1332170692664579801
3841
REQUESTED_TIME_LENGTH = 10
39-
REQUESTED_TIME_STEP = (REQUESTED_TIME_END - REQUESTED_TIME_START) / REQUESTED_TIME_LENGTH
42+
REQUESTED_TIME_STEP = (REQUESTED_TIME_END -
43+
REQUESTED_TIME_START) / REQUESTED_TIME_LENGTH
4044

4145

4246
# pylint: disable=too-many-public-methods

0 commit comments

Comments
 (0)