test: fix WatchaSendNextcloudActivityToWatchaRoomServletTestCase

pull/111/head^2
KevICO 4 years ago committed by Kevin ICOL
parent 407a661124
commit 3c333c85c5
  1. 10
      tests/rest/client/v1/test_watcha.py

@ -391,10 +391,10 @@ class WatchaSendNextcloudActivityToWatchaRoomServletTestCase(
async def _do_rooms_mapping_with_nextcloud_directories(self):
rooms_mapping = {
"parent_directory": {"path": "/a",},
"main_directory": {"path": "/a/b",},
"sub_directory": {"path": "/a/b/c",},
"cross_directory": {"path": "/a/d",},
"parent_directory": {"path": "/a", "share_id": 1},
"main_directory": {"path": "/a/b", "share_id": 2},
"sub_directory": {"path": "/a/b/c", "share_id": 3},
"cross_directory": {"path": "/a/d", "share_id": 4},
}
for _, mapping_value in rooms_mapping.items():
@ -402,7 +402,7 @@ class WatchaSendNextcloudActivityToWatchaRoomServletTestCase(
mapping_value["room_id"] = room_id
await self.store.set_room_mapping_with_nextcloud_directory(
room_id, mapping_value["path"]
room_id, mapping_value["path"], mapping_value["share_id"]
)
return rooms_mapping

Loading…
Cancel
Save