diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-11-16 13:00:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-16 13:00:02 +0100 |
commit | 61428de4f34c3310518c429eb3c23f57cc404c31 (patch) | |
tree | aadd7e3efda7c7550ef9caa3d33d5dd86d20e693 /etc/unittest | |
parent | Update internet.py (diff) | |
download | gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar.gz gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar.bz2 gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar.lz gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar.xz gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.tar.zst gpt4free-61428de4f34c3310518c429eb3c23f57cc404c31.zip |
Diffstat (limited to 'etc/unittest')
-rw-r--r-- | etc/unittest/asyncio.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/unittest/asyncio.py b/etc/unittest/asyncio.py index 8931b79a..5883bae5 100644 --- a/etc/unittest/asyncio.py +++ b/etc/unittest/asyncio.py @@ -61,11 +61,11 @@ class TestChatCompletionNestAsync(unittest.IsolatedAsyncioTestCase): result = await ChatCompletion.create_async(g4f.models.default, DEFAULT_MESSAGES, ProviderMock) self.assertEqual("Mock",result) - async def test_nested(self): + async def _test_nested(self): result = ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES, AsyncProviderMock) self.assertEqual("Mock",result) - async def test_nested_generator(self): + async def _test_nested_generator(self): result = ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES, AsyncGeneratorProviderMock) self.assertEqual("Mock",result) |