We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5612e56 commit d159ac5Copy full SHA for d159ac5
Lib/test/test_traceback.py
@@ -2979,7 +2979,7 @@ class MyClass:
2979
with self.subTest(name=name):
2980
actual = self.get_suggestion(MyClass, name)
2981
self.assertNotIn("you mean", actual)
2982
- self.assertNotIn("'vvv'", actual)
+ self.assertNotIn("'vvv", actual)
2983
self.assertNotIn("'mom'", actual)
2984
self.assertNotIn("'id'", actual)
2985
self.assertNotIn("'w'", actual)
@@ -3169,8 +3169,8 @@ def test_import_from_error_bad_suggestions_do_not_trigger_for_small_names(self):
3169
3170
actual = self.get_import_from_suggestion(code, name)
3171
3172
- self.assertNotIn("vvv", actual)
3173
- self.assertNotIn("mom", actual)
+ self.assertNotIn("'vvv'", actual)
+ self.assertNotIn("'mom'", actual)
3174
3175
3176
self.assertNotIn("'pytho'", actual)
0 commit comments