ci: fix the testing ci issue

This commit is contained in:
100gle
2023-10-01 21:34:35 +08:00
parent f2db6542ad
commit 1fe62818de

View File

@@ -29,7 +29,7 @@ class TestOpenAIParser:
"source": "AVC",
}
with mock.patch("module.parser.openai.OpenAIParser.parse") as mocker:
with mock.patch("module.parser.analyser.OpenAIParser.parse") as mocker:
mocker.return_value = json.dumps(expected)
result = self.parser.parse(text=text, asdict=False)