test: fix another EOL in expectations (#8009)

This commit is contained in:
Yury Semikhatsky 2021-08-05 08:59:48 -07:00 committed by GitHub
parent 28fb3c776a
commit 7454647d8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -224,7 +224,7 @@ it('should fulfill original response after redirects', async ({page, browserName
expect(redirectChain).toEqual(expectedUrls);
expect(response.status()).toBe(200);
expect(await response.text()).toBe('<title>Woof-Woof</title>\n');
expect(await response.text()).toBe('<title>Woof-Woof</title>' + os.EOL);
});
it('should abort after redirects', async ({page, browserName, server}) => {