diff options
author | Joar Wandborg <git@wandborg.com> | 2012-09-29 21:05:01 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-09-29 21:08:20 +0200 |
commit | bee079f36f88c47342fd14d0b75f47b1e04a5b3a (patch) | |
tree | bd93435cab7c240b01e7ee2b633a948c3aca23fa | |
parent | f1d06e1d6c604c72028082a477248d26e81cad5b (diff) | |
download | mediagoblin-bee079f36f88c47342fd14d0b75f47b1e04a5b3a.tar.lz mediagoblin-bee079f36f88c47342fd14d0b75f47b1e04a5b3a.tar.xz mediagoblin-bee079f36f88c47342fd14d0b75f47b1e04a5b3a.zip |
Fixed pylint/pep8 warnings in test/tools.py
-rw-r--r-- | mediagoblin/tests/tools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/tests/tools.py b/mediagoblin/tests/tools.py index b9b0fcd2..d3369831 100644 --- a/mediagoblin/tests/tools.py +++ b/mediagoblin/tests/tools.py @@ -202,8 +202,8 @@ def assert_db_meets_expected(db, expected): assert document == expected_document # make sure it matches -def fixture_add_user(username = u'chris', password = 'toast', - active_user = True): +def fixture_add_user(username=u'chris', password='toast', + active_user=True): test_user = mg_globals.database.User() test_user.username = username test_user.email = username + u'@example.com' |