We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d6c4a1 commit 640d10bCopy full SHA for 640d10b
1 file changed
tests/pdfkit-tests.py
@@ -111,7 +111,7 @@ def test_empty_cookie_value(self):
111
roptions = {
112
'--page-size': 'Letter',
113
'cookies': [
114
- ('test_cookie1',''),
+ ('test_cookie1','""'),
115
('test_cookie2','cookie_value2'),
116
]
117
}
@@ -120,6 +120,7 @@ def test_empty_cookie_value(self):
120
121
test_command = r.command('test')
122
123
+ idx1 = test_command.index('--page-size') # Raise exception in case of not found
124
self.assertTrue(test_command[idx1 + 1] == 'Letter')
125
126
def test_custom_configuration(self):
0 commit comments