mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed RecorderTests.test_has_table_cached() on databases that perform multiple queries when introspecting tables.
Thanks Tim Graham for the report and implementation idea.
Follow up to ea8cbca579
.
This commit is contained in:
parent
1dbcf9a005
commit
21e6864715
@ -54,9 +54,9 @@ class RecorderTests(TestCase):
|
|||||||
query for the existence of the migrations table.
|
query for the existence of the migrations table.
|
||||||
"""
|
"""
|
||||||
recorder = MigrationRecorder(connection)
|
recorder = MigrationRecorder(connection)
|
||||||
with self.assertNumQueries(1):
|
self.assertIs(recorder.has_table(), True)
|
||||||
self.assertEqual(recorder.has_table(), True)
|
with self.assertNumQueries(0):
|
||||||
self.assertEqual(recorder.has_table(), True)
|
self.assertIs(recorder.has_table(), True)
|
||||||
|
|
||||||
|
|
||||||
class LoaderTests(TestCase):
|
class LoaderTests(TestCase):
|
||||||
|
Loading…
Reference in New Issue
Block a user