Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jslint #3167

Merged
merged 1 commit into from
Aug 30, 2017
Merged

jslint #3167

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/client/modules/@arangodb/testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ function unitTest (cases, options) {
// running all tests
for (let n = 0; n < caselist.length; ++n) {
const currentTest = caselist[n];
var localOptions = _.cloneDeep(options)
var localOptions = _.cloneDeep(options);

print(BLUE + '================================================================================');
print('Executing test', currentTest);
Expand Down
3 changes: 2 additions & 1 deletion js/client/modules/@arangodb/testsuites/recovery.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const optionsDocumentation = [
const fs = require('fs');
const pu = require('@arangodb/process-utils');
const tu = require('@arangodb/test-utils');
const _ = require('lodash');

const toArgv = require('internal').toArgv;

Expand All @@ -47,7 +48,7 @@ const RESET = require('internal').COLORS.COLOR_RESET;
function runArangodRecovery (instanceInfo, options, script, setup, count) {
if (!instanceInfo.recoveryArgs) {
let tempDir = fs.getTempPath();
let td = fs.join(tempDir, `${count}`)
let td = fs.join(tempDir, `${count}`);
if (setup) {
pu.cleanupDBDirectoriesAppend(td);
}
Expand Down