Posting tests

This commit is contained in:
László Károlyi 2018-05-27 14:17:52 +02:00
parent 72f82b9e1a
commit a32c884196
No known key found for this signature in database
GPG Key ID: 2DCAF25E55735BFE
2 changed files with 1 additions and 9 deletions

View File

@ -7,7 +7,6 @@ from .access import AccessLogGenerator
from .endpoints import build_endpoint_description_strings from .endpoints import build_endpoint_description_strings
from .server import Server from .server import Server
from .utils import import_by_path from .utils import import_by_path
from argparse import ArgumentError, Namespace
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -192,14 +192,7 @@ class TestCLIInterface(TestCase):
""" """
Tests entirely custom endpoints Tests entirely custom endpoints
""" """
self.assertCLI( self.assertCLI(["-e", "imap:"], {"endpoints": ["imap:"]})
["-e", "imap:"],
{
"endpoints": [
"imap:",
],
},
)
def test_default_proxyheaders(self): def test_default_proxyheaders(self):
""" """