Skip to content

Commit cb82dd9

Browse files
committed
start on the black journey
1 parent ece7ecb commit cb82dd9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

chapter_01.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ making a few little goat noises as you do it, it may help:
6666
from selenium import webdriver
6767
6868
browser = webdriver.Firefox()
69-
browser.get('http://localhost:8000')
69+
browser.get("http://localhost:8000")
7070
71-
assert 'Django' in browser.title
71+
assert "Django" in browser.title
7272
----
7373
====
7474

@@ -94,7 +94,7 @@ Let's try running it:
9494
$ pass:quotes[*python functional_tests.py*]
9595
Traceback (most recent call last):
9696
File "...python-tdd-book/functional_tests.py", line 4, in <module>
97-
browser.get('http://localhost:8000')
97+
browser.get("http://localhost:8000")
9898
File ".../selenium/webdriver/remote/webdriver.py", line 449, in get
9999
self.execute(Command.GET, {"url": url})
100100
File ".../selenium/webdriver/remote/webdriver.py", line 440, in execute

0 commit comments

Comments
 (0)