diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-03 04:28:27 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-03 04:29:27 +0000 |
commit | e1ef55ffbcec7a9a7f8d978c572050f59b1dff4e (patch) | |
tree | a1da4c2e21a93c91b5229004d3d6183816d9b7b7 /tests/test_replication.py | |
parent | c71559cf19adad51a029aebfd663401cdb130aa6 (diff) | |
download | psycopg2-async-keyword.tar.gz |
Added async_ as an alias for asyncasync-keyword
Added in argument for psycopg2.connect() and connection.__init__, and
for the connection.async attribute.
Diffstat (limited to 'tests/test_replication.py')
-rwxr-xr-x | tests/test_replication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_replication.py b/tests/test_replication.py index 79d1295..0aed578 100755 --- a/tests/test_replication.py +++ b/tests/test_replication.py @@ -183,7 +183,7 @@ class AsyncReplicationTest(ReplicationTestCase): @skip_repl_if_green def test_async_replication(self): conn = self.repl_connect( - connection_factory=LogicalReplicationConnection, async=1) + connection_factory=LogicalReplicationConnection, async_=1) if conn is None: return |