From a78fd2abd48811a824d9ac61e61ce106567380a8 Mon Sep 17 00:00:00 2001 From: Paolo Melchiorre Date: Tue, 25 Apr 2017 18:49:29 -0400 Subject: [PATCH] Alphabetized CITextExtension in test migration. --- tests/postgres_tests/migrations/0001_setup_extensions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/postgres_tests/migrations/0001_setup_extensions.py b/tests/postgres_tests/migrations/0001_setup_extensions.py index 6342ba7732..d090ff7fd6 100644 --- a/tests/postgres_tests/migrations/0001_setup_extensions.py +++ b/tests/postgres_tests/migrations/0001_setup_extensions.py @@ -9,22 +9,22 @@ try: ) except ImportError: BtreeGinExtension = mock.Mock() + CITextExtension = mock.Mock() CreateExtension = mock.Mock() HStoreExtension = mock.Mock() TrigramExtension = mock.Mock() UnaccentExtension = mock.Mock() - CITextExtension = mock.Mock() class Migration(migrations.Migration): operations = [ BtreeGinExtension(), + CITextExtension(), # Ensure CreateExtension quotes extension names by creating one with a # dash in its name. CreateExtension('uuid-ossp'), HStoreExtension(), TrigramExtension(), UnaccentExtension(), - CITextExtension(), ]