File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1298,7 +1298,7 @@ describe('SearchQueryUtils', () => {
12981298
12991299 describe ( 'buildSearchQueryJSON cache' , ( ) => {
13001300 test ( 'mutating the returned object does not affect subsequent calls for the same query' , ( ) => {
1301- const query = `type:expense groupBy:category view:bar date:last-month merchant:mutationtest ${ Date . now ( ) } ` ;
1301+ const query = `type:expense groupBy:category view:bar date:last-month merchant:test ${ Date . now ( ) } ` ;
13021302
13031303 const first = buildSearchQueryJSON ( query ) ;
13041304 if ( first ) {
@@ -1338,7 +1338,7 @@ describe('SearchQueryUtils', () => {
13381338 const searchParserModule : { parse : jest . Mock } = jest . requireMock ( '@libs/SearchParser/searchParser' ) ;
13391339 const originalImpl = jest . requireActual < { parse : ( ...args : unknown [ ] ) => unknown } > ( '@libs/SearchParser/searchParser' ) . parse ;
13401340
1341- const query = `type:expense merchant:cacheerrtest ${ Date . now ( ) } ` ;
1341+ const query = `type:expense merchant:cache-err-test ${ Date . now ( ) } ` ;
13421342 let callCount = 0 ;
13431343 searchParserModule . parse . mockImplementation ( ( ...args : unknown [ ] ) => {
13441344 callCount ++ ;
You can’t perform that action at this time.
0 commit comments