summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2017-12-24 14:51:53 +0000
committerMatthew Hodgson <matthew@matrix.org>2017-12-24 14:51:53 +0000
commitace298f629b4eb69921f738e9181af9664094b5c (patch)
tree25ecff993812e69fca2d72d7ea3bc9c89ca9b12c
parentMerge branch 'develop' into matthew/e2e_backups (diff)
downloadsynapse-ace298f629b4eb69921f738e9181af9664094b5c.tar.xz
actually spell example right
-rw-r--r--tests/test_dns.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_dns.py b/tests/test_dns.py

index d08b0f4333..1122265e1a 100644 --- a/tests/test_dns.py +++ b/tests/test_dns.py
@@ -87,7 +87,7 @@ class DnsTestCase(unittest.TestCase): dns_client_mock = Mock() dns_client_mock.lookupService.return_value = defer.fail(error.DNSServerError()) - service_name = "test_service.examle.com" + service_name = "test_service.example.com" entry = Mock(spec_set=["expires"]) entry.expires = 0 @@ -112,7 +112,7 @@ class DnsTestCase(unittest.TestCase): dns_client_mock = Mock(spec_set=['lookupService']) dns_client_mock.lookupService = Mock(spec_set=[]) - service_name = "test_service.examle.com" + service_name = "test_service.example.com" entry = Mock(spec_set=["expires"]) entry.expires = 999999999 @@ -136,7 +136,7 @@ class DnsTestCase(unittest.TestCase): dns_client_mock.lookupService.return_value = defer.fail(error.DNSServerError()) - service_name = "test_service.examle.com" + service_name = "test_service.example.com" cache = {} @@ -151,7 +151,7 @@ class DnsTestCase(unittest.TestCase): dns_client_mock.lookupService.return_value = defer.fail(error.DNSNameError()) - service_name = "test_service.examle.com" + service_name = "test_service.example.com" cache = {}