From cb59903a40e71d545335bc0db45a2d6ccbbe7aba Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 16 Jan 2018 21:40:06 -0800 Subject: [PATCH] fix typo --- certbot-apache/certbot_apache/tests/configurator_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/tests/configurator_test.py b/certbot-apache/certbot_apache/tests/configurator_test.py index a5d48fe57..b9bee9f74 100644 --- a/certbot-apache/certbot_apache/tests/configurator_test.py +++ b/certbot-apache/certbot_apache/tests/configurator_test.py @@ -264,7 +264,7 @@ class MultipleVhostsTest(util.ApacheTest): vh = obj.VirtualHost( "fp", "ap", set([obj.Addr.fromstring("_default_:80")]), False, True) self.config.vhosts = [vh] - self.assertEqual(self.config.find_best_http_vhost("foo.bar", False)) + self.assertEqual(self.config.find_best_http_vhost("foo.bar", False), vh) def test_findbest_continues_on_short_domain(self): # pylint: disable=protected-access