We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ceb74e commit 6942bb9Copy full SHA for 6942bb9
tests/llm_web_kit/extractor/test_extractor_chain.py
@@ -64,7 +64,7 @@ def setUp(self):
64
continue
65
self.data_json.append(json.loads(line))
66
67
- assert len(self.data_json) == 101
+ assert len(self.data_json) == 102
68
69
# Config for HTML extraction
70
self.config = load_pipe_tpl('html-test')
@@ -808,7 +808,7 @@ def test_ascii_delimiter(self):
808
"""测试ascii分隔符."""
809
chain = ExtractSimpleFactory.create(self.config)
810
self.assertIsNotNone(chain)
811
- test_data = self.data_json[100]
+ test_data = self.data_json[101]
812
input_data = DataJson(test_data)
813
result = chain.extract(input_data)
814
md_content = result.get_content_list().to_nlp_md()
0 commit comments