1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Tests: Mock get_local_ip by default too

This commit is contained in:
Paulus Schoutsen
2016-02-14 22:01:30 -08:00
parent 09ab3e95c0
commit 8d366a7367
6 changed files with 9 additions and 22 deletions

View File

@@ -7,7 +7,6 @@ Tests Home Assistant HTTP component does what it should do.
# pylint: disable=protected-access,too-many-public-methods
import re
import unittest
from unittest.mock import patch
import requests
@@ -30,9 +29,7 @@ def _url(path=""):
return HTTP_BASE_URL + path
@patch('homeassistant.components.http.util.get_local_ip',
return_value='127.0.0.1')
def setUpModule(mock_get_local_ip): # pylint: disable=invalid-name
def setUpModule(): # pylint: disable=invalid-name
""" Initalizes a Home Assistant server. """
global hass