File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
javascript/node/selenium-webdriver/bidi Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class ContinueRequestParameters {
49
49
const headerList = [ ]
50
50
headers . forEach ( ( header ) => {
51
51
if ( ! ( header instanceof Header ) ) {
52
- throw new Error ( `CookieHeader must be an instance of Header. Received:'${ header } '` )
52
+ throw new Error ( `Header value must be an instance of Header. Received:'${ header } '` )
53
53
}
54
54
headerList . push ( Object . fromEntries ( header . asMap ( ) ) )
55
55
} )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class ContinueResponseParameters {
55
55
const headerList = [ ]
56
56
headers . forEach ( ( header ) => {
57
57
if ( ! ( header instanceof Header ) ) {
58
- throw new Error ( `Header must be an instance of Header. Received:'${ header } '` )
58
+ throw new Error ( `Header value must be an instance of Header. Received:'${ header } '` )
59
59
}
60
60
headerList . push ( Object . fromEntries ( header . asMap ( ) ) )
61
61
} )
You can’t perform that action at this time.
0 commit comments