Skip to content

Commit 326db18

Browse files
author
matthias_schaub
committed
Extent waiting time for Firebase Functions to complete.
1 parent f805877 commit 326db18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mapswipe_workers/tests/integration/test_archive_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def tearDown(self):
2020
def test_changes(self):
2121
"""Test if groups, tasks and results are deleted from Firebase."""
2222
archive_project.archive_project([self.project_id])
23-
time.sleep(4)
23+
time.sleep(6)
2424

2525
fb_db = auth.firebaseDB()
2626
ref = fb_db.reference("v2/groups/{0}".format(self.project_id))
@@ -42,7 +42,7 @@ def test_changes(self):
4242
def test_project_id_not_exists(self):
4343
"""Test for project id which does not exists."""
4444
archive_project.archive_project(["tuna"])
45-
time.sleep(4)
45+
time.sleep(6)
4646

4747
fb_db = auth.firebaseDB()
4848
ref = fb_db.reference("v2/groups/")

0 commit comments

Comments
 (0)