Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mkmer committed Jan 5, 2024
1 parent bd0d512 commit f3a59fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_blink_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ async def test_download_videos_file_exists(self, mock_isfile, mock_req):
]
with self.assertLogs(level="DEBUG") as dl_log:
await self.blink.download_videos("/tmp", camera="foo", stop=2, delay=0)
assert expected_log[0]in dl_log.output
assert expected_log[1]in dl_log.output
assert expected_log[2]in dl_log.output
assert expected_log[0] in dl_log.output
assert expected_log[1] in dl_log.output
assert expected_log[2] in dl_log.output

@mock.patch("blinkpy.blinkpy.api.request_videos")
async def test_parse_camera_not_in_list(self, mock_req):
Expand Down

0 comments on commit f3a59fc

Please sign in to comment.