Add return type to tests without arguments (#87613)

* Add return type to tests without arguments

* Black

* Cancel fixture amends
This commit is contained in:
epenet 2023-02-07 14:20:06 +01:00 committed by GitHub
parent fb4c0b4b7a
commit 4142f0d15d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
99 changed files with 473 additions and 459 deletions

View file

@ -76,7 +76,7 @@ def test_extended_json_encoder(hass):
assert ha_json_enc.default(o) == {"__type": str(type(o)), "repr": repr(o)}
def test_json_dumps_sorted():
def test_json_dumps_sorted() -> None:
"""Test the json dumps sorted function."""
data = {"c": 3, "a": 1, "b": 2}
assert json_dumps_sorted(data) == json.dumps(
@ -84,7 +84,7 @@ def test_json_dumps_sorted():
)
def test_json_dumps_float_subclass():
def test_json_dumps_float_subclass() -> None:
"""Test the json dumps a float subclass."""
class FloatSubclass(float):
@ -93,7 +93,7 @@ def test_json_dumps_float_subclass():
assert json_dumps({"c": FloatSubclass(1.2)}) == '{"c":1.2}'
def test_json_dumps_tuple_subclass():
def test_json_dumps_tuple_subclass() -> None:
"""Test the json dumps a tuple subclass."""
tt = time.struct_time((1999, 3, 17, 32, 44, 55, 2, 76, 0))
@ -101,7 +101,7 @@ def test_json_dumps_tuple_subclass():
assert json_dumps(tt) == "[1999,3,17,32,44,55,2,76,0]"
def test_json_dumps_named_tuple_subclass():
def test_json_dumps_named_tuple_subclass() -> None:
"""Test the json dumps a tuple subclass."""
class NamedTupleSubclass(NamedTuple):
@ -114,14 +114,14 @@ def test_json_dumps_named_tuple_subclass():
assert json_dumps(nts) == '["a"]'
def test_json_dumps_rgb_color_subclass():
def test_json_dumps_rgb_color_subclass() -> None:
"""Test the json dumps of RGBColor."""
rgb = RGBColor(4, 2, 1)
assert json_dumps(rgb) == "[4,2,1]"
def test_json_bytes_strip_null():
def test_json_bytes_strip_null() -> None:
"""Test stripping nul from strings."""
assert json_bytes_strip_null("\0") == b'""'