Skip to content

Commit 6942bb9

Browse files
committed
x
1 parent 6ceb74e commit 6942bb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/llm_web_kit/extractor/test_extractor_chain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def setUp(self):
6464
continue
6565
self.data_json.append(json.loads(line))
6666

67-
assert len(self.data_json) == 101
67+
assert len(self.data_json) == 102
6868

6969
# Config for HTML extraction
7070
self.config = load_pipe_tpl('html-test')
@@ -808,7 +808,7 @@ def test_ascii_delimiter(self):
808808
"""测试ascii分隔符."""
809809
chain = ExtractSimpleFactory.create(self.config)
810810
self.assertIsNotNone(chain)
811-
test_data = self.data_json[100]
811+
test_data = self.data_json[101]
812812
input_data = DataJson(test_data)
813813
result = chain.extract(input_data)
814814
md_content = result.get_content_list().to_nlp_md()

0 commit comments

Comments
 (0)