Parcourir la source

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

JINMEI Tatuya il y a 13 ans
Parent
commit
196b58b907
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/bin/zonemgr/tests/zonemgr_test.py

+ 1 - 1
src/bin/zonemgr/tests/zonemgr_test.py

@@ -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)