diff options
author | Chocobozzz <me@florianbigard.com> | 2022-12-09 11:14:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-12-12 13:36:23 +0100 |
commit | 2732eeff9e6994582293b5aaa0cb158b7e272e9e (patch) | |
tree | 417d30cf470cd1db84e06c5dbd1b5429d4b99bc1 /server/tests/cli/peertube.ts | |
parent | c7c5f8d0f17b0ab598fbe237f11639c6de28110c (diff) | |
download | PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.gz PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.zst PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.zip |
Fix CI using 127.0.0.1 for tests
Diffstat (limited to 'server/tests/cli/peertube.ts')
-rw-r--r-- | server/tests/cli/peertube.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/cli/peertube.ts b/server/tests/cli/peertube.ts index a39bcfebe..400d5867c 100644 --- a/server/tests/cli/peertube.ts +++ b/server/tests/cli/peertube.ts | |||
@@ -300,7 +300,7 @@ describe('Test CLI wrapper', function () { | |||
300 | const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) | 300 | const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) |
301 | 301 | ||
302 | expect(stdout).to.contain('super video') | 302 | expect(stdout).to.contain('super video') |
303 | expect(stdout).to.contain(`localhost:${server.port}`) | 303 | expect(stdout).to.contain(server.host) |
304 | } | 304 | } |
305 | }) | 305 | }) |
306 | 306 | ||