Commit 75cc96bc authored by Ian Kelly's avatar Ian Kelly
Browse files

[1.0.X] Backport of [10024] from trunk. Refs #10443: Added Oracle to the...

[1.0.X] Backport of [10024] from trunk. Refs #10443: Added Oracle to the #10443 regression test exemption, since we don't yet support it.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10025 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 9a5942cd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -146,8 +146,8 @@ datetime.datetime(2000, 1, 1, 6, 1, 1)

"""}

if settings.DATABASE_ENGINE != "mysql":
    __test__["non-mysql-tests"] = """
if settings.DATABASE_ENGINE not in ("mysql", "oracle"):
    __test__["timezone-tests"] = """
# Saving an updating with timezone-aware datetime Python objects. Regression
# test for #10443.