summaryrefslogtreecommitdiffstats
path: root/etc/unittest/asyncio.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-06 01:18:45 +0200
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-06 01:18:45 +0200
commita4ca5773bd9602951af0ccc11f7e219dfb93732a (patch)
tree60beaccf6b583663d75f9381cfc0395e4b1d3be6 /etc/unittest/asyncio.py
parentAdd Groq and Openai interfaces, Add integration tests (diff)
downloadgpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.gz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.bz2
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.lz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.xz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.zst
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.zip
Diffstat (limited to 'etc/unittest/asyncio.py')
-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 57a1fb7d..8931b79a 100644
--- a/etc/unittest/asyncio.py
+++ b/etc/unittest/asyncio.py
@@ -19,8 +19,8 @@ class TestChatCompletion(unittest.TestCase):
return ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES, AsyncProviderMock)
def test_exception(self):
- if hasattr(asyncio, '_nest_patched'):
- self.skipTest('asyncio is already patched')
+ if has_nest_asyncio:
+ self.skipTest('has nest_asyncio')
self.assertRaises(g4f.errors.NestAsyncioError, asyncio.run, self.run_exception())
def test_create(self):