From 1e3d9279ee53a62e2139a2643395a0adad18ee0e Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 27 May 2018 11:52:27 +0200 Subject: [PATCH] Fix the test suite --- tests/federation_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/federation_test.py b/tests/federation_test.py index 17cd747..7614327 100644 --- a/tests/federation_test.py +++ b/tests/federation_test.py @@ -75,15 +75,15 @@ def test_federation(): """Ensure the homepage is accessible.""" instance1 = Instance('http://localhost:5006', 'http://instance1_web_1:5005') instance1.ping() - instance1.drop_db() instance2 = Instance('http://localhost:5007', 'http://instance2_web_1:5005') instance2.ping() - instance2.drop_db() # Login instance1.login() + instance1.drop_db() instance2.login() + instance2.drop_db() # Instance1 follows instance2 instance1.follow(instance2)