diff options
author | Ben Kelly <bk@ancilla.ca> | 2017-03-01 10:59:13 -0500 |
---|---|---|
committer | Ben Kelly <btk@google.com> | 2017-04-13 11:16:38 -0400 |
commit | 521166bf08f1970c91c5da8c20109dd3199a1184 (patch) | |
tree | 53d9706492bb24fafbed16a410b6b9293bfcfd32 /_pytest | |
parent | 0d74722da5943ce3adfb460e581c2485baa0be65 (diff) | |
download | wee-slack-521166bf08f1970c91c5da8c20109dd3199a1184.tar.gz |
Handling incoming me_message subtypes.
Signed-off-by: Ben Kelly <btk@google.com>
Diffstat (limited to '_pytest')
-rw-r--r-- | _pytest/conftest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/_pytest/conftest.py b/_pytest/conftest.py index 0259ac2..7a6f39a 100644 --- a/_pytest/conftest.py +++ b/_pytest/conftest.py @@ -69,6 +69,8 @@ class FakeWeechat(): return "testuser" def buffer_new(*args): return "0x8a8a8a8b" + def prefix(self, type): + return "" def __getattr__(self, name): def method(*args): pass |