Skip to content

Commit

Permalink
Stop aliasing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Feb 3, 2025
1 parent bd42ce6 commit c4525f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aiosqlite/tests/smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import sqlite3
from pathlib import Path
from sqlite3 import OperationalError
from threading import Thread
from unittest import IsolatedAsyncioTestCase as TestCase, SkipTest
from tempfile import TemporaryDirectory
from threading import Thread
from unittest import IsolatedAsyncioTestCase, SkipTest

import aiosqlite
from .helpers import setup_logger
Expand All @@ -18,7 +18,7 @@
default_text_factory = str


class SmokeTest(TestCase):
class SmokeTest(IsolatedAsyncioTestCase):
@classmethod
def setUpClass(cls):
setup_logger()
Expand Down

0 comments on commit c4525f7

Please sign in to comment.