Mercurial > libervia-backend
comparison sat/test/test_plugin_xep_0334.py @ 2765:378188abe941
misc: replaced all "dummy" by the more conventional and readable "__" ("_" being used for gettext)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 11 Jan 2019 11:13:15 +0100 |
parents | 56f94936df1e |
children | 003b8b4b56a7 |
comparison
equal
deleted
inserted
replaced
2764:92af49cde255 | 2765:378188abe941 |
---|---|
79 <body>text</body> | 79 <body>text</body> |
80 %s | 80 %s |
81 </message> | 81 </message> |
82 """ | 82 """ |
83 | 83 |
84 def cb(dummy): | 84 def cb(__): |
85 raise Exception("Errback should not be ran instead of callback!") | 85 raise Exception("Errback should not be ran instead of callback!") |
86 | 86 |
87 def eb(failure): | 87 def eb(failure): |
88 failure.trap(exceptions.SkipHistory) | 88 failure.trap(exceptions.SkipHistory) |
89 | 89 |