File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments