Skip to content

Commit

Permalink
Fix expected output.
Browse files Browse the repository at this point in the history
  • Loading branch information
faassen committed Apr 23, 2010
1 parent 0212af3 commit e143d14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grok/ftests/json/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
JSON views answer a special content-type::
>>> print http('GET /cave/show HTTP/1.1')
HTTP/1. 200 Ok
HTTP/1.0 200 Ok
Content-Length: 17
Content-Type: application/json
<BLANKLINE>
Expand All @@ -19,4 +19,4 @@ class Cave(grok.Model):

class CaveJSON(grok.JSON):
def show(self):
return 'A Cavemans cave'
return 'A Cavemans cave'

0 comments on commit e143d14

Please sign in to comment.