Skip to content

Commit

Permalink
iterator: remove value field
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagowfx committed Jul 3, 2023
1 parent a680060 commit 467336c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ async def test_invalid_function(bidi_session, top_context):
("new Error('SOME_ERROR_TEXT')", {"type": "error"},),
("([1, 2][Symbol.iterator]())", {
"type": "iterator",
"value": [],
}),
("new Proxy({}, {})", {
"type": "proxy"
Expand Down
1 change: 0 additions & 1 deletion webdriver/tests/bidi/script/call_function/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ async def test_primitive_values(bidi_session, top_context, await_promise, expres
("new Error('SOME_ERROR_TEXT')", {"type": "error"}),
("([1, 2][Symbol.iterator]())", {
"type": "iterator",
"value": [],
}),
("new Proxy({}, {})", {
"type": "proxy"
Expand Down
1 change: 0 additions & 1 deletion webdriver/tests/bidi/script/evaluate/exception_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ async def test_invalid_script(bidi_session, top_context):
("new Error('SOME_ERROR_TEXT')", {"type": "error"},),
("([1, 2][Symbol.iterator]())", {
"type": "iterator",
"value": [],
}),
("new Proxy({}, {})", {
"type": "proxy"
Expand Down
1 change: 0 additions & 1 deletion webdriver/tests/bidi/script/evaluate/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ async def test_primitive_values(bidi_session, top_context, expression, expected)
("new Error('SOME_ERROR_TEXT')", {"type": "error"},),
("([1, 2][Symbol.iterator]())", {
"type": "iterator",
"value": [],
}),
("new Proxy({}, {})", {
"type": "proxy"
Expand Down

1 comment on commit 467336c

@community-tc-integration
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh oh! Looks like an error! Details

HttpError: Invalid request.

Only 65535 characters are allowed; 76349 were supplied.

Please sign in to comment.