diff --git a/pyproject.toml b/pyproject.toml index 342a01a..da70bfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [tool.poetry] name = "heatmiserv3" -version = "2.0.1" +version = "2.0.2" description = "A library to interact with Heatmiser Themostats using V3 protocol." authors = ["Andy Loughran "] -license = "Apache 2" +license = "MIT" readme = "README.md" [tool.poetry.dependencies] diff --git a/tests/test_heatmiser.py b/tests/test_heatmiser.py index 14eeca9..01c3151 100644 --- a/tests/test_heatmiser.py +++ b/tests/test_heatmiser.py @@ -18,7 +18,8 @@ def test_update_4_bits(self): crc.extract_bits(4) assert crc.high == 78 assert crc.low == 155 - + + def test_update_8_bits(self): crc = heatmiser.CRC16() assert crc.high == crc.low crc.extract_bits(8)