summaryrefslogtreecommitdiff
path: root/tests/queries/test_q.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/queries/test_q.py')
-rw-r--r--tests/queries/test_q.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/queries/test_q.py b/tests/queries/test_q.py
index 52200b2ecf..e5fa0c1778 100644
--- a/tests/queries/test_q.py
+++ b/tests/queries/test_q.py
@@ -273,7 +273,7 @@ class QTests(SimpleTestCase):
)
def test_connector_validation(self):
- msg = f"_connector must be one of {Q.AND!r}, {Q.OR!r}, {Q.XOR!r}, or None."
+ msg = f"connector must be one of {Q.AND!r}, {Q.OR!r}, {Q.XOR!r}, or None."
with self.assertRaisesMessage(ValueError, msg):
Q(_connector="evil")