diff --git a/spec/fixtures/no-proprietary-codecs.js b/spec/fixtures/no-proprietary-codecs.js index b561e14e58..3e0e409337 100644 --- a/spec/fixtures/no-proprietary-codecs.js +++ b/spec/fixtures/no-proprietary-codecs.js @@ -31,12 +31,11 @@ app.once('ready', () => { } if (message === 'error' && error === MEDIA_ERR_SRC_NOT_SUPPORTED) { - console.log('Video format not supported, proprietary codecs are not included') app.exit(0) return } - console.log(`Unexpected error: ${error}`) + console.log(`Unexpected response from page: ${message} ${error}`) app.exit(1) }) })