Skip to content

Commit a49eb1f

Browse files
committed
input EmptyTask
Signed-off-by: Nikolay Karpov <[email protected]>
1 parent c83483a commit a49eb1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_modify_manifest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from typing import Dict, List, Union
1919

2020
import pytest
21+
from ray_curator.tasks import EmptyTask
2122

2223
from sdp.processors import ApplyInnerJoin, DropNonAlphabet
2324

@@ -161,7 +162,7 @@ def test_apply_inner_join(
161162
output_manifest_file=manifest_out,
162163
)
163164

164-
processor.process()
165+
processor.process(EmptyTask)
165166

166167
with open(manifest_out, "r") as f:
167168
output_lines = [json.loads(line) for line in f]

0 commit comments

Comments
 (0)