From 80fbdec1da486fbada57e9a470222943c5301ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Gouzien?= Date: Sat, 6 May 2017 14:28:11 +0200 Subject: [PATCH] Corrected test class name. --- test/test_speed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()