diff options
author | Victor Shyba <victor1984@riseup.net> | 2016-11-17 01:33:04 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-12-12 09:13:09 -0200 |
commit | 529dbdf27804f12da80907d25c412d10e9fa3763 (patch) | |
tree | 34e7978593562feb05b65492f951c87ccba90551 /testing/tests/couch/test_command.py | |
parent | 632cd2414a47bc7f471d8f501ab6250293aedf51 (diff) |
[style] fix pep8 and confs
Fixes setup.cfg, adding current exclude rules, simplified tox.ini to use
setup.cfg and fixed all.
Diffstat (limited to 'testing/tests/couch/test_command.py')
-rw-r--r-- | testing/tests/couch/test_command.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/tests/couch/test_command.py b/testing/tests/couch/test_command.py index 68097fb1..9fb2c153 100644 --- a/testing/tests/couch/test_command.py +++ b/testing/tests/couch/test_command.py @@ -25,6 +25,7 @@ class CommandBasedDBCreationTest(unittest.TestCase): state.ensure_database, "user-1337") def test_raises_unauthorized_by_default(self): - state = couch_state.CouchServerState("url", check_schema_versions=False) + state = couch_state.CouchServerState("url", + check_schema_versions=False) self.assertRaises(u1db_errors.Unauthorized, state.ensure_database, "user-1337") |