Fix unit tests after adding extra argument on put_json

This commit is contained in:
Erik Johnston 2014-09-15 15:05:12 +01:00
parent 6ac0b4ade8
commit 0897a09f49
3 changed files with 28 additions and 10 deletions

View file

@ -169,7 +169,8 @@ class TypingNotificationsTestCase(unittest.TestCase):
"user_id": self.u_apple.to_string(),
"typing": True,
}
)
),
on_send_callback=ANY,
),
defer.succeed((200, "OK"))
)
@ -219,7 +220,8 @@ class TypingNotificationsTestCase(unittest.TestCase):
"user_id": self.u_apple.to_string(),
"typing": False,
}
)
),
on_send_callback=ANY,
),
defer.succeed((200, "OK"))
)