Skip to content

Commit b216bdb

Browse files
committed
fix: update unit test to use IsolatedAsyncioTestCase
1 parent 4ac52bd commit b216bdb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/credentials_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
1111
"""
1212

13-
import unittest
1413
from unittest import IsolatedAsyncioTestCase
1514

1615
import openfga_sdk
@@ -176,7 +175,7 @@ def test_configuration_client_credentials_missing_api_audience(self):
176175
credential.validate_credentials_config()
177176

178177

179-
class TestCredentialsIssuer(unittest.TestCase):
178+
class TestCredentialsIssuer(IsolatedAsyncioTestCase):
180179
def setUp(self):
181180
# Setup a basic configuration that can be modified per test case
182181
self.configuration = CredentialConfiguration(api_issuer="https://example.com")

0 commit comments

Comments
 (0)