2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[1414] make the case-insensitive test cover the case of class, too

This commit is contained in:
JINMEI Tatuya
2011-12-15 09:17:53 -08:00
parent 4d6719f99e
commit 196b58b907

View File

@@ -572,7 +572,7 @@ class TestZonemgrRefresh(unittest.TestCase):
# and with case-insensitive checking
config['secondary_zones'] = \
zone_list_from_name_classes([("Example.NeT.", "IN")])
zone_list_from_name_classes([("Example.NeT.", "in")])
self.zone_refresh.update_config_data(config, self.cc_session)
self.assertTrue(("example.net.", "IN") in
self.zone_refresh._zonemgr_refresh_info)