Skip to content

Commit 57f8f75

Browse files
committed
flake8 fixed: line too long
1 parent 02ddf0e commit 57f8f75

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

influxdb/tests/dataframe_client_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,9 @@ def test_write_points_from_dataframe_with_time_precision(self):
149149
cli.write_points(dataframe, measurement, time_precision='n')
150150
self.assertEqual(m.last_request.qs['precision'], ['n'])
151151
self.assertEqual(
152-
b'foo column_one="1",column_three=1.0,column_two=1 0\nfoo '
153-
b'column_one="2",column_three=2.0,column_two=2 3600000000000\n',
152+
b'foo column_one="1",column_three=1.0,column_two=1 0\n'
153+
b'foo column_one="2",column_three=2.0,column_two=2 '
154+
b'3600000000000\n',
154155
m.last_request.body,
155156
)
156157

0 commit comments

Comments
 (0)