summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-11-28 10:32:55 +0200
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-11-28 16:06:52 +0000
commit283de270987dbd17a3cf2285da60722d4b5cc001 (patch)
tree3e5d55fb26a4abedeccf4305c0003339cfdba2d7 /tests
parent08b479bc105af9ee50ce3d67d7661bd85fc6437f (diff)
downloadpsycopg2-283de270987dbd17a3cf2285da60722d4b5cc001.tar.gz
Remove redundant parentheses
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_lobject.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_lobject.py b/tests/test_lobject.py
index cf8a556..8eafabc 100755
--- a/tests/test_lobject.py
+++ b/tests/test_lobject.py
@@ -463,9 +463,9 @@ def _has_lo64(conn):
% conn.server_version)
if 'lo64' not in psycopg2.__version__:
- return (False, "this psycopg build doesn't support the lo64 API")
+ return False, "this psycopg build doesn't support the lo64 API"
- return (True, "this server and build support the lo64 API")
+ return True, "this server and build support the lo64 API"
def skip_if_no_lo64(f):