diff options
Diffstat (limited to 'tests/test_discover.py')
| -rw-r--r-- | tests/test_discover.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_discover.py b/tests/test_discover.py index c6d6ab2..9a2debd 100644 --- a/tests/test_discover.py +++ b/tests/test_discover.py @@ -2,7 +2,6 @@ from unittest import IsolatedAsyncioTestCase from unittest.mock import AsyncMock, patch from discover import main from bleak.backends.device import BLEDevice -import os class TestDiscover(IsolatedAsyncioTestCase): @patch('src.discover.BleakScanner.discover', new_callable=AsyncMock) @@ -33,4 +32,4 @@ class TestDiscover(IsolatedAsyncioTestCase): {"name": "Device 2", "address": "GG:HH:II:JJ:KK:LL"} ] - self.assertEqual(result,expected)
\ No newline at end of file + self.assertEqual(result,expected) |
