Skip to content

Commit

Permalink
Fix three-hour typo (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ace Nassri authored and lukesneeringer committed Oct 28, 2017
1 parent fa8ecdc commit d92954f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dlp/system-test/deid.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const path = require('path');
const test = require('ava');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node deid';
const cmd = 'node deid.js';
const cwd = path.join(__dirname, `..`);

const harmfulString = 'My SSN is 372819127';
Expand Down
2 changes: 1 addition & 1 deletion dlp/system-test/inspect.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const path = require('path');
const test = require('ava');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node inspect';
const cmd = 'node inspect.js';
const cwd = path.join(__dirname, `..`);

test.before(tools.checkCredentials);
Expand Down
2 changes: 1 addition & 1 deletion dlp/system-test/metadata.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const path = require('path');
const test = require('ava');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node metadata';
const cmd = 'node metadata.js';
const cwd = path.join(__dirname, `..`);

test.before(tools.checkCredentials);
Expand Down
2 changes: 1 addition & 1 deletion dlp/system-test/quickstart.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const path = require('path');
const test = require('ava');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node quickstart';
const cmd = 'node quickstart.js';
const cwd = path.join(__dirname, `..`);

test.before(tools.checkCredentials);
Expand Down
2 changes: 1 addition & 1 deletion dlp/system-test/redact.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const test = require('ava');
const fs = require('fs');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node redact';
const cmd = 'node redact.js';
const cwd = path.join(__dirname, `..`);

const testImage = 'resources/test.png';
Expand Down
2 changes: 1 addition & 1 deletion dlp/system-test/risk.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const path = require('path');
const test = require('ava');
const tools = require('@google-cloud/nodejs-repo-tools');

const cmd = 'node risk';
const cmd = 'node risk.js';
const cwd = path.join(__dirname, `..`);

const dataset = 'integration_tests_dlp';
Expand Down

0 comments on commit d92954f

Please sign in to comment.