From f082813d67e6482b6ab8fbf4f7550de278e42d7f Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 3 Jun 2015 12:22:39 -0400 Subject: [PATCH] [1.8.x] Fixed typo in runtests.py vendor check. --- tests/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')