~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/tests/test_client.py

  • Committer: Curtis Hovey
  • Date: 2012-01-31 05:16:12 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: curtis.hovey@canonical.com-20120131051612-164b2cj3xf3ci35n
Removed the exceptional rule for replies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        'author': headers.get('author', 'author'),
39
39
        'hidden': hidden,
40
40
        'attachments': [],
 
41
        'replies': headers.get('in-reply-to', None),
41
42
        'body': body,
42
43
        }
43
 
    if 'in-reply-to' in headers:
44
 
        message['replies'] = headers['in-reply-to']
45
44
    return message
46
45
 
47
46