diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2009-03-10 22:48:42 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2009-03-10 22:48:42 +0000 |
| commit | 7daf0b94070ab29419825156ec68bca813e3c09f (patch) | |
| tree | f882a47a69f95189baa17f86ff6501978596a698 | |
| parent | a4f1e48ddbc464ed0ccb9c305db721845db91d6b (diff) | |
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/trunk@10024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/model_regress/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/model_regress/models.py b/tests/regressiontests/model_regress/models.py index 8d40c425ca..668acd830a 100644 --- a/tests/regressiontests/model_regress/models.py +++ b/tests/regressiontests/model_regress/models.py @@ -149,8 +149,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. |
