We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca9fdf commit 532a8c6Copy full SHA for 532a8c6
Lib/test/test_turtle.py
@@ -471,7 +471,7 @@ def test_clone(self):
471
rawturtle = turtle.RawTurtle(screen)
472
another_turtle = rawturtle.clone()
473
self.assertEqual(another_turtle.currentLineItem, another_turtle.items[-1])
474
- self.assertFalse(a_turtle.currentLineItem in another_turtle.items)
+ self.assertFalse(rawturtle.currentLineItem in another_turtle.items)
475
476
477
class TestTurtleScreen(unittest.TestCase):
0 commit comments