]> granicus.if.org Git - python/commitdiff
Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).
authorMark Dickinson <dickinsm@gmail.com>
Wed, 3 Feb 2010 16:50:14 +0000 (16:50 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Wed, 3 Feb 2010 16:50:14 +0000 (16:50 +0000)
Lib/test/test_inspect.py

index 3666d6115b1e437e1bf3784b2d849c38aee829c6..be469cbdddbbdbe6313686b844418508136f1ca4 100644 (file)
@@ -167,7 +167,7 @@ class TestInterpreterStack(IsTestBase):
         self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam',
                                          ['    eggs(b + d, c + f)\n'], 0))
         self.assertEqual(git.tr[2][1:], (modfile, 18, 'eggs',
-                                         ['    q = y / 0\n'], 0))
+                                         ['    q = y // 0\n'], 0))
 
     def test_frame(self):
         args, varargs, varkw, locals = inspect.getargvalues(mod.fr)