Skip to content

Commit 2b5f2e5

Browse files
committed
Resolved linting errors
1 parent d08fc0b commit 2b5f2e5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

dlp/system-test/deid.test.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,15 @@ describe('deid', () => {
109109

110110
// dlp_deidentify_exception_list
111111
it('should exclude the words during inspection', () => {
112-
const textToInspect = 'jack@example.org accessed customer record of user5@example.com';
112+
const textToInspect =
113+
'jack@example.org accessed customer record of user5@example.com';
113114
const words = 'jack@example.org,jill@example.org';
114115
const infoTypes = 'EMAIL_ADDRESS';
115116
let output;
116117
try {
117-
output = execSync(`node deIdentifyWithExceptionList.js ${projectId} "${textToInspect}" "${words}" "${infoTypes}"`);
118+
output = execSync(
119+
`node deIdentifyWithExceptionList.js ${projectId} "${textToInspect}" "${words}" "${infoTypes}"`
120+
);
118121
} catch (err) {
119122
output = err.message;
120123
}
@@ -125,7 +128,8 @@ describe('deid', () => {
125128
});
126129

127130
it('should handle deidentification errors', () => {
128-
const textToInspect = 'jack@example.org accessed customer record of user5@example.com';
131+
const textToInspect =
132+
'jack@example.org accessed customer record of user5@example.com';
129133
const words = 'jack@example.org,jill@example.org';
130134
const infoTypes = 'EMAIL_ADDRESS';
131135
let output;

0 commit comments

Comments
 (0)