diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2014-09-11 10:14:22 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2014-09-11 10:14:22 +0100 |
commit | 606c4a87ca189dc99c6a234c3670930270cbab95 (patch) | |
tree | 9b183394c6a083476c3e7ed727bc03575bc4c256 | |
parent | a2bf643e0f845b82d915e76a81fbcea59532ea8b (diff) | |
download | psycopg2-lo64.tar.gz |
Fixed typo in testslo64
-rwxr-xr-x | tests/test_lobject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_lobject.py b/tests/test_lobject.py index 2323113..9532770 100755 --- a/tests/test_lobject.py +++ b/tests/test_lobject.py @@ -443,7 +443,7 @@ decorate_all_tests(LargeObjectTruncateTests, def _has_lo64(conn): """Return (bool, msg) about the lo64 support""" if conn.server_version < 90300: - return (False, "server version %s doesn'ts support the lo64 API" + return (False, "server version %s doesn't support the lo64 API" % conn.server_version) if 'lo64' not in psycopg2.__version__: |