diff options
author | 2013-03-11 19:49:20 +0100 | |
---|---|---|
committer | 2013-03-11 19:50:54 +0100 | |
commit | 763b142db70ce77952cb46cfccf84d9800f15651 (patch) | |
tree | d2636e48766d365bd8a9d079de603b127ab88744 /tests/other/test_filedatabase.py | |
parent | Merge pull request #33 from stickell/patch-3 (diff) | |
download | pyload-763b142db70ce77952cb46cfccf84d9800f15651.tar.xz |
websocket login via session, websocket pushes server status, webui renders server status
Diffstat (limited to 'tests/other/test_filedatabase.py')
-rw-r--r-- | tests/other/test_filedatabase.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/other/test_filedatabase.py b/tests/other/test_filedatabase.py index 3a63b75d5..9a5b236a8 100644 --- a/tests/other/test_filedatabase.py +++ b/tests/other/test_filedatabase.py @@ -158,9 +158,8 @@ class TestDatabase(BenchmarkTest): def test_count(self): self.db.purgeAll() - assert self.db.filecount() == 0 - assert self.db.downloadcount() == 0 - assert self.db.queuecount() == 0 + assert self.db.downloadstats() == (0,0) + assert self.db.queuestats() == (0,0) assert self.db.processcount() == 0 def test_update(self): |