Commit 03316579 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed a test that depended on how identifiers are quoted by the database...

Fixed a test that depended on how identifiers are quoted by the database backend and broke under MySQL. Refs #17055.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@16994 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent d75337fc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -864,14 +864,14 @@ class ManageAlternateSettings(AdminScriptTestCase):
        "alternate: manage.py builtin commands work with settings provided as argument"
        args = ['sqlall','--settings=alternate_settings', 'admin_scripts']
        out, err = self.run_manage(args)
        self.assertOutput(out, 'CREATE TABLE "admin_scripts_article"')
        self.assertRegexpMatches(out,  'CREATE TABLE [`"]admin_scripts_article[`"]')
        self.assertNoOutput(err)

    def test_builtin_with_environment(self):
        "alternate: manage.py builtin commands work if settings are provided in the environment"
        args = ['sqlall','admin_scripts']
        out, err = self.run_manage(args,'alternate_settings')
        self.assertOutput(out, 'CREATE TABLE "admin_scripts_article"')
        self.assertRegexpMatches(out,  'CREATE TABLE [`"]admin_scripts_article[`"]')
        self.assertNoOutput(err)

    def test_builtin_with_bad_settings(self):