Update minor things in order to pass CI build

This commit is contained in:
Shay Nehmad 2020-09-01 11:48:06 +03:00
parent e7ecaa1744
commit cec57c1604
2 changed files with 15 additions and 12 deletions

View File

@ -1,6 +1,7 @@
from unittest import TestCase
from common.network.network_utils import get_host_from_network_location, remove_port
from common.network.network_utils import (get_host_from_network_location,
remove_port)
class TestNetworkUtils(TestCase):

View File

@ -5,11 +5,13 @@ Implementation is based on:
"""
import logging
import requests
from urllib.parse import urljoin
import requests
from common.network.network_utils import remove_port
from infection_monkey.exploit.web_rce import WebRCE
from infection_monkey.model import ID_STRING
from network.network_utils import remove_port
__author__ = 'Ophir Harpaz'