Fix reference to wrong components in tests for cameras (#1) (#2975)

🐬 👍
This commit is contained in:
Landrash 2016-08-25 18:55:37 +02:00 committed by Teagan Glenn
parent 826ec9b9d7
commit 34f57ebdc9
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
"""The tests for UVC camera module.""" """The tests for generic camera component."""
import unittest import unittest
from unittest import mock from unittest import mock

View File

@ -1,4 +1,4 @@
"""The tests for UVC camera module.""" """The tests for local file camera component."""
from tempfile import NamedTemporaryFile from tempfile import NamedTemporaryFile
import unittest import unittest
from unittest import mock from unittest import mock
@ -12,7 +12,7 @@ from tests.common import get_test_home_assistant
class TestLocalCamera(unittest.TestCase): class TestLocalCamera(unittest.TestCase):
"""Test the generic camera platform.""" """Test the local file camera component."""
def setUp(self): def setUp(self):
"""Setup things to be run when tests are started.""" """Setup things to be run when tests are started."""