Browse Source

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

JINMEI Tatuya 13 years ago
parent
commit
196b58b907
1 changed files with 1 additions and 1 deletions
  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)