Skip to content

Commit

Permalink
fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
mShan0 committed May 30, 2024
1 parent 6cf5582 commit 761eeac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testapp/tests/test_multiple_databases.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
from django import VERSION
from django.core.exceptions import ValidationError
from django.db import OperationalError
from django.db.backends.sqlite3.operations import DatabaseOperations
from django.db.backends.base.operations import BaseDatabaseOperations
from django.test import TestCase, skipUnlessDBFeature

from ..models import BinaryData, Pizza, Topping

if VERSION >= (3, 2):
from ..models import TestCheckConstraintWithUnicode

DatabaseOperations = BaseDatabaseOperations

@skipUnless(
VERSION >= (3, 1),
Expand Down

0 comments on commit 761eeac

Please sign in to comment.