blob: 7e67fc6f6bbb2f7909871427a37e62d08395955d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from __future__ import annotations
from unittest.mock import Mock
from kombu.exceptions import HttpError
class test_HttpError:
def test_str(self) -> None:
assert str(HttpError(200, 'msg', Mock(name='response')))
|