| Index: tests/test_rpy.py |
| =================================================================== |
| --- a/tests/test_rpy.py |
| +++ b/tests/test_rpy.py |
| @@ -68,7 +68,7 @@ |
| b'text': b'foo.com##div#ad1', |
| b'selector': {b'type': b'css', b'value': b'div#ad1'}, |
| b'action': b'hide', |
| - b'options': [(b'domain', [(b'foo.com', True)])], |
| + b'options': {b'domain': {b'foo.com': True}}, |
| }, |
| }, |
| 'filter_with_%': { |
| @@ -79,7 +79,7 @@ |
| b'selector': {b'type': b'url-pattern', |
| b'value': b'%22banner%*%22idzone%'}, |
| b'action': b'block', |
| - b'options': [], |
| + b'options': {}, |
| }, |
| }, |
| 'filter_multiple': { |
| @@ -89,8 +89,7 @@ |
| b'text': b'foo.com,bar.com##div#ad1', |
| b'selector': {b'type': b'css', b'value': b'div#ad1'}, |
| b'action': b'hide', |
| - b'options': [(b'domain', [(b'foo.com', True), (b'bar.com', |
| - True)])], |
| + b'options': {b'domain': {b'foo.com': True, b'bar.com': True}}, |
| }, |
| }, |
| } |