diff --git a/src/config.js b/src/config.js index 6f478bee09..a58342ce95 100644 --- a/src/config.js +++ b/src/config.js @@ -29,7 +29,7 @@ module.exports = { APP_NAME: APP_NAME, APP_TEAM: APP_TEAM, APP_VERSION: APP_VERSION, - APP_WINDOW_TITLE: APP_NAME + ' (BETA)', + APP_WINDOW_TITLE: APP_NAME, CONFIG_PATH: getConfigPath(), diff --git a/test/setup.js b/test/setup.js index 75dde6d444..092f293536 100644 --- a/test/setup.js +++ b/test/setup.js @@ -53,7 +53,7 @@ function waitForLoad (app, t, opts) { }).then(function () { return app.webContents.getTitle() }).then(function (title) { - // Note the window title is WebTorrent (BETA), this is the HTML + // Note the window title is WebTorrent, this is the HTML <title> t.equal(title, 'Main Window', 'html title') }) }