X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Futils%2Fvideos%2Fvideos.ts;h=7393942534b831be1da5fa0b5a5edb050ef2eedf;hb=59651eee5600839cdc62911a211d61457d8456b7;hp=166253ffc971c8de774beb476cc42b324f31f7bb;hpb=11ba2ab3f1e3ec29b3765fa0c1ff4ed410c851a9;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/utils/videos/videos.ts b/server/tests/utils/videos/videos.ts index 166253ffc..739394253 100644 --- a/server/tests/utils/videos/videos.ts +++ b/server/tests/utils/videos/videos.ts @@ -23,7 +23,8 @@ function getVideoCategories (url: string) { return makeGetRequest({ url, - path + path, + statusCodeExpected: 200 }) } @@ -32,7 +33,8 @@ function getVideoLicences (url: string) { return makeGetRequest({ url, - path + path, + statusCodeExpected: 200 }) } @@ -41,7 +43,8 @@ function getVideoLanguages (url: string) { return makeGetRequest({ url, - path + path, + statusCodeExpected: 200 }) } @@ -50,7 +53,8 @@ function getVideoPrivacies (url: string) { return makeGetRequest({ url, - path + path, + statusCodeExpected: 200 }) }