Skip to content

Commit

Permalink
Fix lint errors from test upstreaming
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Aug 1, 2016
1 parent b267d1f commit d6d8d2a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions XMLHttpRequest/resources/parse-headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ def main(request, response):
content = ""
if "my-custom-header" in request.GET:
val = request.GET.first("my-custom-header")
print "header is about to be set to '{}'".format(val)
response.headers.set("My-Custom-Header", val)
print "header was set"

return content
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
var left = buffer.getChannelData(0);
var right = buffer.getChannelData(1);
for (var i = 0; i < 2048; ++i) {
console.log(left[i], right[i]);
if (i < 1024) {
assert_true(Math.abs(left[i]) >= Math.abs(right[i]), "index " + i + " should be on the left");
} else {
Expand Down

0 comments on commit d6d8d2a

Please sign in to comment.