From 12f731b32c1782232b4a3b1eb019ea46a81f3315 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Jun 2017 13:16:53 +0200 Subject: [PATCH] Fix docstring (#7907) --- tests/components/sensor/test_radarr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/components/sensor/test_radarr.py b/tests/components/sensor/test_radarr.py index b0259b6352a..d8d71a77548 100644 --- a/tests/components/sensor/test_radarr.py +++ b/tests/components/sensor/test_radarr.py @@ -1,4 +1,4 @@ -"""The tests for the radarr platform.""" +"""The tests for the Radarr platform.""" import unittest import pytest @@ -347,7 +347,7 @@ class TestRadarrSetup(unittest.TestCase): def test_upcoming_today(self, req_mock): """Test filtering for a single day. - Radarr needs to respond with at least 2 days + Radarr needs to respond with at least 2 days. """ config = { 'platform': 'radarr', @@ -375,7 +375,7 @@ class TestRadarrSetup(unittest.TestCase): @unittest.mock.patch('requests.get', side_effect=mocked_requests_get) def test_system_status(self, req_mock): - """Test getting system status""" + """Test the getting of the system status.""" config = { 'platform': 'radarr', 'api_key': 'foo',