Pārlūkot izejas kodu

Refs #25183 -- Added debugging for non-deterministic GeoIP test.

Tim Graham 9 gadi atpakaļ
vecāks
revīzija
c041671167
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      tests/gis_tests/test_geoip.py

+ 2 - 2
tests/gis_tests/test_geoip.py

@@ -73,9 +73,9 @@ class GeoIPTest(unittest.TestCase):
 
         for query in (fqdn, addr):
             for func in (g.country_code, g.country_code_by_addr, g.country_code_by_name):
-                self.assertEqual('US', func(query))
+                self.assertEqual('US', func(query), 'Failed for func %s and query %s' % (func, query))
             for func in (g.country_name, g.country_name_by_addr, g.country_name_by_name):
-                self.assertEqual('United States', func(query))
+                self.assertEqual('United States', func(query), 'Failed for func %s and query %s' % (func, query))
             self.assertEqual({'country_code': 'US', 'country_name': 'United States'},
                              g.country(query))