summaryrefslogtreecommitdiffstats
path: root/etc/unittest
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-11-16 13:00:02 +0100
committerGitHub <noreply@github.com>2024-11-16 13:00:02 +0100
commit61428de4f34c3310518c429eb3c23f57cc404c31 (patch)
treeaadd7e3efda7c7550ef9caa3d33d5dd86d20e693 /etc/unittest
parentUpdate internet.py (diff)
downloadgpt4free-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.py4
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)