diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2020-02-16 20:07:33 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2020-06-07 15:50:28 +0200 |
commit | 855cf3c748852733542b350d7f37e0db722bebbb (patch) | |
tree | 03d71ab5264c10a59aa7c04c0f281c0cc78ee9ae /_pytest | |
parent | a73203a3ec5d5ee0d2ca2e33b13aa9537a301cef (diff) | |
download | wee-slack-855cf3c748852733542b350d7f37e0db722bebbb.tar.gz |
Store message ts in line tags instead of misusing date_printed
Fixes #514
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 a25865c..b49388d 100644 --- a/_pytest/conftest.py +++ b/_pytest/conftest.py @@ -93,6 +93,8 @@ class FakeWeechat(): print("w.prnt {}".format(output)) def hdata_get(*args): return "0x000001" + def hdata_integer(*args): + return 1 def hdata_pointer(*args): return "0x000002" def hdata_time(*args): |