]> granicus.if.org Git - python/commitdiff
Disable an inspect test: it depends on dict ordering which parameter is reported...
authorGeorg Brandl <georg@python.org>
Mon, 20 Feb 2012 23:32:36 +0000 (00:32 +0100)
committerGeorg Brandl <georg@python.org>
Mon, 20 Feb 2012 23:32:36 +0000 (00:32 +0100)
Lib/test/test_inspect.py

index f5318e178b370a183dd3d466a281635b18238c37..4b7ee4ed68252d82b38c9923f557c6eebcc406e5 100644 (file)
@@ -810,7 +810,8 @@ class TestGetcallargsFunctions(unittest.TestCase):
             self.assertEqualException(f, '2, 3, 4')
             self.assertEqualException(f, '1, 2, 3, a=1')
             self.assertEqualException(f, '2, 3, 4, c=5')
-            self.assertEqualException(f, '2, 3, 4, a=1, c=5')
+            # XXX: success of this one depends on dict order
+            ## self.assertEqualException(f, '2, 3, 4, a=1, c=5')
             # f got an unexpected keyword argument
             self.assertEqualException(f, 'c=2')
             self.assertEqualException(f, '2, c=3')