remove const from non-member function

This commit is contained in:
Shelley Vohr 2017-10-31 23:55:22 -04:00
parent 93df164485
commit 7f89cd0774
No known key found for this signature in database
GPG key ID: F13993A75599653C
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ void RemoveExtraParameter(const std::string& key) {
CrashReporter::GetInstance()->RemoveExtraParameter(key);
}
std::map<std::string, std::string> GetParameters() const {
std::map<std::string, std::string> GetParameters() {
return CrashReporter::GetInstance()->GetParameters();
}

View file

@ -11,7 +11,7 @@ const {closeWindow} = require('./window-helpers')
const {remote} = require('electron')
const {app, BrowserWindow, crashReporter} = remote.require('electron')
describe.only('crashReporter module', () => {
describe('crashReporter module', () => {
if (process.mas || process.env.DISABLE_CRASH_REPORTER_TESTS) return
let originalTempDirectory = null