]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix benchmark tests
authorChocobozzz <me@florianbigard.com>
Thu, 24 Mar 2022 12:42:12 +0000 (13:42 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 24 Mar 2022 12:42:12 +0000 (13:42 +0100)
scripts/benchmark.ts

index 37c74013189190314021a8210237f0a624595f6d..623c11e2777218ad29541b75d1210d2c5d3af60c 100644 (file)
@@ -55,7 +55,7 @@ async function run () {
       path: '/accounts/peertube',
       headers: buildAPHeader(),
       expecter: (body, status) => {
-        return status === 200 && body.startsWith('{"type":')
+        return status === 200 && body.startsWith('{"@context":')
       }
     },
     {
@@ -63,7 +63,7 @@ async function run () {
       path: '/videos/watch/' + video.uuid,
       headers: buildAPHeader(),
       expecter: (body, status) => {
-        return status === 200 && body.startsWith('{"type":"Video"')
+        return status === 200 && body.startsWith('{"@context":')
       }
     },
     {