@@ -83,7 +83,7 @@ test('contactQueryFilterFunction()', async t => {
8383
8484 void t . test ( 'filter name by regex' , async t => {
8585 const QUERY = { name : REGEX_VALUE }
86- const ID_LIST = [ 'id1' , 'id3' ]
86+ const ID_LIST = [ 'id1' , 'id3' ]
8787
8888 const func = puppet . contactQueryFilterFactory ( QUERY )
8989 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -92,7 +92,7 @@ test('contactQueryFilterFunction()', async t => {
9292
9393 void t . test ( 'filter name by text' , async t => {
9494 const QUERY = { name : TEXT_VALUE }
95- const ID_LIST = [ 'id2' , 'id4' ]
95+ const ID_LIST = [ 'id2' , 'id4' ]
9696
9797 const func = puppet . contactQueryFilterFactory ( QUERY )
9898 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -101,7 +101,7 @@ test('contactQueryFilterFunction()', async t => {
101101
102102 void t . test ( 'filter alias by regex' , async t => {
103103 const QUERY = { alias : REGEX_VALUE }
104- const ID_LIST = [ 'id2' , 'id4' ]
104+ const ID_LIST = [ 'id2' , 'id4' ]
105105
106106 const func = puppet . contactQueryFilterFactory ( QUERY )
107107 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -110,7 +110,7 @@ test('contactQueryFilterFunction()', async t => {
110110
111111 void t . test ( 'filter alias by text' , async t => {
112112 const QUERY = { alias : TEXT_VALUE }
113- const ID_LIST = [ 'id1' , 'id3' ]
113+ const ID_LIST = [ 'id1' , 'id3' ]
114114
115115 const func = puppet . contactQueryFilterFactory ( QUERY )
116116 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -119,7 +119,7 @@ test('contactQueryFilterFunction()', async t => {
119119
120120 void t . test ( 'filter contact existing id' , async t => {
121121 const QUERY = { id : 'id1' }
122- const ID_LIST = [ 'id1' ]
122+ const ID_LIST = [ 'id1' ]
123123
124124 const func = puppet . contactQueryFilterFactory ( QUERY )
125125 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -186,7 +186,7 @@ test('roomQueryFilterFunction()', async t => {
186186
187187 void t . test ( 'filter name by regex' , async t => {
188188 const QUERY = { topic : REGEX_VALUE }
189- const ID_LIST = [ 'id2' , 'id4' ]
189+ const ID_LIST = [ 'id2' , 'id4' ]
190190
191191 const func = puppet . roomQueryFilterFactory ( QUERY )
192192 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -195,7 +195,7 @@ test('roomQueryFilterFunction()', async t => {
195195
196196 void t . test ( 'filter name by text' , async t => {
197197 const QUERY = { topic : TEXT_VALUE }
198- const ID_LIST = [ 'id1' , 'id3' ]
198+ const ID_LIST = [ 'id1' , 'id3' ]
199199
200200 const func = puppet . roomQueryFilterFactory ( QUERY )
201201 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
@@ -204,7 +204,7 @@ test('roomQueryFilterFunction()', async t => {
204204
205205 void t . test ( 'filter name by existing id' , async t => {
206206 const QUERY = { id : 'id4' }
207- const ID_LIST = [ 'id4' ]
207+ const ID_LIST = [ 'id4' ]
208208
209209 const func = puppet . roomQueryFilterFactory ( QUERY )
210210 const idList = PAYLOAD_LIST . filter ( func ) . map ( payload => payload . id )
0 commit comments