mirror of
https://github.com/django/django.git
synced 2024-12-22 09:05:43 +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.
|
||||
"""
|
||||
recorder = MigrationRecorder(connection)
|
||||
with self.assertNumQueries(1):
|
||||
self.assertEqual(recorder.has_table(), True)
|
||||
self.assertEqual(recorder.has_table(), True)
|
||||
self.assertIs(recorder.has_table(), True)
|
||||
with self.assertNumQueries(0):
|
||||
self.assertIs(recorder.has_table(), True)
|
||||
|
||||
|
||||
class LoaderTests(TestCase):
|
||||
|
Loading…
Reference in New Issue
Block a user