From 620483011013620f08728dd3a7ec9995bb63fe51 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 18 Jul 2019 12:38:52 +0100 Subject: [PATCH] More inbox checks --- tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests.py b/tests.py index 1ab9d5bb7..f6edba790 100644 --- a/tests.py +++ b/tests.py @@ -1215,6 +1215,8 @@ def testClientToServer(): assert 'bob@'+bobDomain+':'+str(bobPort) not in open(aliceDir+'/accounts/alice@'+aliceDomain+'/following.txt').read() assert validInbox(bobDir,'bob',bobDomain) assert validInboxFilenames(bobDir,'bob',bobDomain,aliceDomain,alicePort) + assert validInbox(aliceDir,'alice',aliceDomain) + assert validInboxFilenames(aliceDir,'alice',aliceDomain,bobDomain,bobPort) # stop the servers thrAlice.kill()