aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-06-29 08:57:19 +0200
committerChocobozzz <me@florianbigard.com>2023-06-29 09:08:13 +0200
commitae22c59f14d0d553f60b281948b6c232c2aca178 (patch)
tree4d3b38ebcf7ff27966233b381e980a34112e943e /server/tests/api
parentba278fa51dc578835c7fcb3a6eca4cd8cd86c755 (diff)
downloadPeerTube-ae22c59f14d0d553f60b281948b6c232c2aca178.tar.gz
PeerTube-ae22c59f14d0d553f60b281948b6c232c2aca178.tar.zst
PeerTube-ae22c59f14d0d553f60b281948b6c232c2aca178.zip
Fix broken replay with long live video name
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/live/live-save-replay.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/api/live/live-save-replay.ts b/server/tests/api/live/live-save-replay.ts
index 8985c9b39..d554cf208 100644
--- a/server/tests/api/live/live-save-replay.ts
+++ b/server/tests/api/live/live-save-replay.ts
@@ -38,7 +38,7 @@ describe('Save replay setting', function () {
38 const attributes: LiveVideoCreate = { 38 const attributes: LiveVideoCreate = {
39 channelId: servers[0].store.channel.id, 39 channelId: servers[0].store.channel.id,
40 privacy: VideoPrivacy.PUBLIC, 40 privacy: VideoPrivacy.PUBLIC,
41 name: 'my super live', 41 name: 'live'.repeat(30),
42 saveReplay: options.replay, 42 saveReplay: options.replay,
43 replaySettings: options.replaySettings, 43 replaySettings: options.replaySettings,
44 permanentLive: options.permanent 44 permanentLive: options.permanent