diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-15 13:56:08 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-05-15 13:56:08 +0200 |
commit | 8eb6a9eb2b42d869d9b0eb0ae479417d1b6afaf1 (patch) | |
tree | b0fe33d14840aa43ddedcff50023695ad59c9afc /server/tests | |
parent | c08a7f16e72767f7ffdcdb8d66be419f56452f1b (diff) | |
download | PeerTube-8eb6a9eb2b42d869d9b0eb0ae479417d1b6afaf1.tar.gz PeerTube-8eb6a9eb2b42d869d9b0eb0ae479417d1b6afaf1.tar.zst PeerTube-8eb6a9eb2b42d869d9b0eb0ae479417d1b6afaf1.zip |
Fix test
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/plugins/action-hooks.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/tests/plugins/action-hooks.ts b/server/tests/plugins/action-hooks.ts index 9158b271d..e8d03ee0f 100644 --- a/server/tests/plugins/action-hooks.ts +++ b/server/tests/plugins/action-hooks.ts | |||
@@ -251,7 +251,11 @@ describe('Test plugin action hooks', function () { | |||
251 | 251 | ||
252 | await servers[1].videos.update({ id: videoUUID, attributes: { name: 'remote video updated' } }) | 252 | await servers[1].videos.update({ id: videoUUID, attributes: { name: 'remote video updated' } }) |
253 | 253 | ||
254 | await servers[0].servers.waitUntilLog('action:activity-pub.remote-video.updated - AP remote video - video remote video', 1, false) | 254 | await servers[0].servers.waitUntilLog( |
255 | 'action:activity-pub.remote-video.updated - AP remote video updated - video remote video updated', | ||
256 | 1, | ||
257 | false | ||
258 | ) | ||
255 | }) | 259 | }) |
256 | }) | 260 | }) |
257 | 261 | ||