This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via a101ddfff42bc451120529e5bb3d796423abd972 (commit)
via 5f20c1c411eeb6d736dce50f4aacf7f2003d27bc (commit)
from 926024dfa8c83f198432288100dcda18530dd657 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/a101ddfff42bc451120529e5bb3d796423abd972
commit a101ddfff42bc451120529e5bb3d796423abd972
Merge: 926024d 5f20c1c
Author: Oleg Broytman <ph...@ph...>
Date: Thu Feb 12 16:04:20 2015 +0300
Merge pull request #79 from drnlm/fix_flake8_E241
Fix flake8 E241 - multiple spaces after ','
http://sourceforge.net/p/sqlobject/sqlobject/ci/5f20c1c411eeb6d736dce50f4aacf7f2003d27bc
commit 5f20c1c411eeb6d736dce50f4aacf7f2003d27bc
Author: Neil <drn...@gm...>
Date: Thu Feb 12 14:26:21 2015 +0200
Fix flake8 E241 - multiple spaces after ','
diff --git a/sqlobject/tests/test_parse_uri.py b/sqlobject/tests/test_parse_uri.py
index 83c7009..bcb0671 100644
--- a/sqlobject/tests/test_parse_uri.py
+++ b/sqlobject/tests/test_parse_uri.py
@@ -105,33 +105,33 @@ def test_uri():
connection = DBConnection()
connection.close = lambda: None
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'mysql', 'host', None, None, None, 'database'
assert connection.uri() == "mysql://host/database"
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'mysql', 'host', None, 'user', 'pass word', 'database'
assert connection.uri() == "mysql://user:pass%20word@host/database"
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'postgres', 'host', None, 'user', None, 'database'
assert connection.uri() == "postgres://user@host/database"
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'postgres', 'host', 5432, None, None, 'database'
assert connection.uri() == "postgres://host:5432/database"
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'postgres', None, None, None, None, '/full/path/to/socket/database'
assert connection.uri() == "postgres:///full/path/to/socket/database"
- connection.dbName, connection.host, connection.port, \
- connection.user, connection.password, connection.db = \
+ connection.dbName, connection.host, connection.port, \
+ connection.user, connection.password, connection.db = \
'postgres', 'host', None, 'us:er', 'p@ssword', 'database'
assert connection.uri() == "postgres://us%3Aer:p%40ssword@host/database"
-----------------------------------------------------------------------
Summary of changes:
sqlobject/tests/test_parse_uri.py | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
hooks/post-receive
--
SQLObject development repository
|