summaryrefslogtreecommitdiffstats
path: root/etc/unittest/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'etc/unittest/main.py')
-rw-r--r--etc/unittest/main.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/etc/unittest/main.py b/etc/unittest/main.py
index 9b9ca011..f5eb5138 100644
--- a/etc/unittest/main.py
+++ b/etc/unittest/main.py
@@ -1,4 +1,3 @@
-from .include import DEFAULT_MESSAGES
import unittest
import asyncio
import g4f
@@ -6,6 +5,8 @@ from g4f import ChatCompletion, get_last_provider
from g4f.Provider import RetryProvider
from .mocks import ProviderMock
+DEFAULT_MESSAGES = [{'role': 'user', 'content': 'Hello'}]
+
class NoTestChatCompletion(unittest.TestCase):
def no_test_create_default(self):
@@ -31,7 +32,4 @@ class TestGetLastProvider(unittest.TestCase):
def test_get_last_provider_async(self):
coroutine = ChatCompletion.create_async(g4f.models.default, DEFAULT_MESSAGES, ProviderMock)
asyncio.run(coroutine)
- self.assertEqual(get_last_provider(), ProviderMock)
-
-if __name__ == '__main__':
- unittest.main() \ No newline at end of file
+ self.assertEqual(get_last_provider(), ProviderMock) \ No newline at end of file