Skip to content

Commit 3a393b5

Browse files
committed
test: add additional userId to teardown list to fix bugs on rerunning all integration tests
1 parent 16689d3 commit 3a393b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

mapswipe_workers/tests/integration/test_update_user_data.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ def setUp(self):
1818
self.user_ids.append(user_id)
1919

2020
def tearDown(self):
21-
tear_down.delete_test_user(self.user_ids)
21+
tear_down.delete_test_user(
22+
self.user_ids
23+
# todo: this does not belong here, but for some reason it is needed for cleanup
24+
# probably because an earlier test does not correctly clean up its firebase users
25+
+ ["test_build_area_heidelberg"]
26+
)
2227

2328
def test_no_users_in_postgres(self):
2429
"""Test update users when no users are in postgres yet."""

0 commit comments

Comments
 (0)