whitespace

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-26 17:54:34 -05:00
parent 15cfbd2b94
commit 53d1e2abd5
+2
View File
@@ -53,11 +53,13 @@ def test_search():
style = r.html.search('Python is a {} language')[0]
assert style == 'programming'
def test_xpath():
r = get()
html = r.html.xpath('/html', first=True)
assert 'no-js' in html.attrs['class']
if __name__ == '__main__':
# test_file_get()
test_css_selector()