summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-06-03 12:22:39 -0400
committerTim Graham <timograham@gmail.com>2015-06-03 12:22:39 -0400
commitf082813d67e6482b6ab8fbf4f7550de278e42d7f (patch)
treeed8a6a655c57a69bf2a1bba0258d7b35bc9ffcdf
parent2009525c8b7cc9246acc094e9e271f887b09cce9 (diff)
[1.8.x] Fixed typo in runtests.py vendor check.
-rwxr-xr-xtests/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index 9cc14cfb8d..317b54a95a 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -235,7 +235,7 @@ def django_tests(verbosity, interactive, failfast, keepdb, reverse, test_labels,
state = setup(verbosity, test_labels)
extra_tests = []
- if test_labels and 'postgres_tests' in test_labels and connection.vendor != 'postgres':
+ if test_labels and 'postgres_tests' in test_labels and connection.vendor != 'postgresql':
if verbosity >= 2:
print("Removed postgres_tests from tests as we're not running with PostgreSQL.")
test_labels.remove('postgres_tests')