Bump ha-ffmpeg to 3.0.2 (#43597)

This commit is contained in:
Paulus Schoutsen 2020-11-25 08:45:15 +01:00 committed by GitHub
parent c421555db3
commit 0cf3736162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 24 additions and 29 deletions

View file

@ -61,7 +61,7 @@ class TestFFmpegNoiseSetup:
entity = self.hass.states.get("binary_sensor.ffmpeg_noise")
assert entity.state == "off"
self.hass.add_job(mock_ffmpeg.call_args[0][2], True)
self.hass.add_job(mock_ffmpeg.call_args[0][1], True)
self.hass.block_till_done()
entity = self.hass.states.get("binary_sensor.ffmpeg_noise")
@ -123,7 +123,7 @@ class TestFFmpegMotionSetup:
entity = self.hass.states.get("binary_sensor.ffmpeg_motion")
assert entity.state == "off"
self.hass.add_job(mock_ffmpeg.call_args[0][2], True)
self.hass.add_job(mock_ffmpeg.call_args[0][1], True)
self.hass.block_till_done()
entity = self.hass.states.get("binary_sensor.ffmpeg_motion")