IDEA-CR-53093: PY-37226 Revert pydev prefix for test directories

GitOrigin-RevId: 3d4abb05167e85cb44720e36d0fa3b949f199f30
This commit is contained in:
Elizaveta Shashkova
2019-09-19 11:57:49 +03:00
committed by intellij-monorepo-bot
parent 20597fd799
commit 626a14835a
197 changed files with 53 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
def test_dump_threads():
import pydevd
try:
from StringIO import StringIO
except:
from io import StringIO
stream = StringIO()
pydevd.dump_threads(stream=stream)
contents = stream.getvalue()
assert 'Thread MainThread (daemon: False, pydevd thread: False)' in contents
assert 'test_dump_threads' in contents