diff options
author | louiz’ <louiz@louiz.org> | 2016-04-27 10:22:43 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-04-27 11:04:05 +0200 |
commit | 98517e9a7b7873c15a5bde081a29be92c3dcfac3 (patch) | |
tree | dfb2c3e9580a7d2246b146ecd363fc925c98ace2 | |
parent | 1e56c59e8241dbfc6a2526c371cc2e894f9d0f18 (diff) | |
download | biboumi-98517e9a7b7873c15a5bde081a29be92c3dcfac3.tar.gz biboumi-98517e9a7b7873c15a5bde081a29be92c3dcfac3.tar.bz2 biboumi-98517e9a7b7873c15a5bde081a29be92c3dcfac3.tar.xz biboumi-98517e9a7b7873c15a5bde081a29be92c3dcfac3.zip |
Change the name of the DB in the e2e tests
-rw-r--r-- | tests/end_to_end/__main__.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py index fbfd3ce..147e132 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -262,14 +262,14 @@ confs = { 'basic': """hostname=biboumi.localhost password=coucou -db_name=biboumi.sqlite +db_name=e2e_test.sqlite port=8811 admin=admin@example.com""", 'fixed_server': """hostname=biboumi.localhost password=coucou -db_name=biboumi.sqlite +db_name=e2e_test.sqlite port=8811 fixed_irc_server=irc.localhost admin=admin@example.com @@ -537,8 +537,6 @@ if __name__ == '__main__': partial(expect_stanza, ("/iq[@type='result']/disco_items:query[@node='http://jabber.org/protocol/commands']", "/iq/disco_items:query/disco_items:item[6]")), ], conf='fixed_server'), - - ) failures = 0 |