diff --git a/test/test_speed.py b/test/test_speed.py index 73dda181..8d5bc9a3 100644 --- a/test/test_speed.py +++ b/test/test_speed.py @@ -59,11 +59,11 @@ class TestSpeed(TestCase): unwanted computation of repr(). Exemple : big pandas data. See issue #919. """ - class Slow_repr(): + class SlowRepr(): "class to test what happens if __repr__ is very slow." def some_method(self): pass def __repr__(self): time.sleep(0.2) - test = Slow_repr() + test = SlowRepr() jedi.Interpreter('test.som', [locals()]).completions()