Skip to content

Commit a6cbf46

Browse files
committed
Fix the latest vineyard ci.
Signed-off-by: Ye Cao <[email protected]>
1 parent 0ccfa09 commit a6cbf46

File tree

7 files changed

+13
-14
lines changed

7 files changed

+13
-14
lines changed

python/vineyard/contrib/kedro/io/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#
1818

1919
"""``VineyardDataSet`` is a data set implementation which handles in-memory data.
20-
stored in vineyard.
20+
stored in vineyard.
2121
"""
2222

2323
from typing import Any

python/vineyard/contrib/kedro/plugins/argo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# which is licensed under the Apache License, Version 2.0.
99

1010
"""Command line `kedro vineyard argo generate` will generate an Argo workflow
11-
configuration file from a Kedro pipeline.
11+
configuration file from a Kedro pipeline.
1212
"""
1313

1414
import re

python/vineyard/contrib/kedro/plugins/catalog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# which is licensed under the Apache License, Version 2.0.
99

1010
"""Command line `kedro vineyard catalog {list/create}` will list the catalog of
11-
given pipelines, and create a catalog configuration which overrides existing
12-
ones with VineyardDataSet.
11+
given pipelines, and create a catalog configuration which overrides existing
12+
ones with VineyardDataSet.
1313
"""
1414

1515
import os

python/vineyard/io/byte.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
''' This module exposes support for ByteStream, that use can used like:
19+
'''This module exposes support for ByteStream, that use can used like:
2020
2121
.. code:: python
2222

python/vineyard/io/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
''' This module exposes support for DataframeStream, that use can used like:
19+
'''This module exposes support for DataframeStream, that use can used like:
2020
2121
.. code:: python
2222

python/vineyard/io/recordbatch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
''' This module exposes support for RecordBatchStream.
20-
'''
19+
'''This module exposes support for RecordBatchStream.'''
2120

2221
import contextlib
2322
import json

test/runner.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -444,12 +444,12 @@ def send_garbage_bytes(bytes):
444444
send_garbage_bytes(b'1' * 1000)
445445
send_garbage_bytes(b'1' * 10000)
446446
send_garbage_bytes(b'1' * 100000)
447-
send_garbage_bytes(b'\xFF' * 1)
448-
send_garbage_bytes(b'\xFF' * 10)
449-
send_garbage_bytes(b'\xFF' * 100)
450-
send_garbage_bytes(b'\xFF' * 1000)
451-
send_garbage_bytes(b'\xFF' * 10000)
452-
send_garbage_bytes(b'\xFF' * 100000)
447+
send_garbage_bytes(b'\xff' * 1)
448+
send_garbage_bytes(b'\xff' * 10)
449+
send_garbage_bytes(b'\xff' * 100)
450+
send_garbage_bytes(b'\xff' * 1000)
451+
send_garbage_bytes(b'\xff' * 10000)
452+
send_garbage_bytes(b'\xff' * 100000)
453453

454454

455455
def run_vineyard_cpp_tests(meta, allocator, endpoints, tests):

0 commit comments

Comments
 (0)