Skip to content

Commit eb5f6c8

Browse files
committed
Fix a few nits
1 parent 8af1fa2 commit eb5f6c8

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

wai-aria/tools/atta-atk-atspi.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ class AtkAtspiAtta():
3232
STATUS_OK = "OK"
3333
STATUS_READY = "READY"
3434

35-
3635
RESULT_PASS = "PASS"
3736
RESULT_FAIL = "FAIL"
3837
RESULT_NOT_RUN = "NOTRUN"
@@ -198,7 +197,7 @@ def set_next_test(self, name, url):
198197
method should be called prior to the test document being loaded so
199198
that we can listen for document:load-complete accessibility events.
200199
We set this ATTA's ready state to False here, and set it to True once
201-
we have received a document:load-complete event for the the next test.
200+
we have received a document:load-complete event for the next test.
202201
203202
Arguments:
204203
- name: A string containing the name of the test. This name is used
@@ -686,7 +685,7 @@ def dispatch(self):
686685
def send_error(self):
687686
self.send_response(404)
688687
self.send_header("Content-Type", "text/plain")
689-
add_headers(self)
688+
self.add_headers()
690689
self.wfile.write(bytes("Error: bad request\n", "utf-8"))
691690

692691
@staticmethod

0 commit comments

Comments
 (0)