summaryrefslogtreecommitdiff
path: root/tests/test_lobject.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_lobject.py')
-rwxr-xr-xtests/test_lobject.py2
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__: