From a8ec717d32defe89ed5b00f890fc4475da19c739 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 5 Jan 2020 20:22:16 +0200 Subject: [PATCH] Fix tests --- tests/test_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filters.py b/tests/test_filters.py index 0592f31b..f29e1982 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -276,7 +276,7 @@ class TestCommandStart: test_filter = CommandStart() # empty filter message = Message(text=self.START) result = await test_filter.check(message) - assert result == {'deep_link': None} + assert result async def test_start_command_payload_is_matched(self): test_filter = CommandStart(deep_link=self.GOOD)