@@ -96,7 +96,7 @@ describe("Search filter model integration test:", () => {
96
96
"requests with a given query string" ,
97
97
"responses with a given status code" ,
98
98
"exchanges by all header values" ,
99
- "exchanges by a specific header" ,
99
+ "exchanges with a specific header" ,
100
100
"exchanges by body content" ,
101
101
"exchanges by body size" ,
102
102
"exchanges that contain a given value anywhere" ,
@@ -979,7 +979,7 @@ describe("Search filter model integration test:", () => {
979
979
980
980
it ( "should show descriptions for various suggestions" , ( ) => {
981
981
[
982
- [ "header" , "exchanges by a specific header" ] ,
982
+ [ "header" , "exchanges with a specific header" ] ,
983
983
[ "header[date]" , "exchanges with a 'date' header" ] ,
984
984
[ "header[date]=" ,
985
985
"exchanges with a 'date' header equal to a given value" ] ,
@@ -1581,9 +1581,9 @@ describe("Search filter model integration test:", () => {
1581
1581
[ "not(" , "exchanges that do not match a given condition" ] ,
1582
1582
[ "not(error" , "excluding requests that weren't transmitted successfully" ] ,
1583
1583
[ "not(head" , "excluding exchanges by all header values" ] ,
1584
- [ "not(header" , "excluding exchanges by a specific header" ] ,
1584
+ [ "not(header" , "excluding exchanges with a specific header" ] ,
1585
1585
[ "not(query^=?abc)" , "excluding requests with a query string starting with ?abc" ] ,
1586
- [ "not(hostname*=" , "excluding requests to a hostname containing a given value" ] ,
1586
+ [ "not(hostname*=" , "excluding requests to any hostname containing a given value" ] ,
1587
1587
[ "not(method=POST)" , "excluding POST requests" ]
1588
1588
] . forEach ( ( [ input , expectedOutput ] ) => {
1589
1589
const description = getSuggestionDescriptions ( input ) [ 0 ] ;
0 commit comments