Skip to content

Commit 30f4751

Browse files
committed
Fix test issues.
1 parent c475917 commit 30f4751

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_remote.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_manhole_clean_exit():
7373
'line time.sleep(1)',
7474
'return <= stuff: None',
7575
)
76-
target.reset()
76+
target.buff.reset()
7777
tracer.proc.send_signal(signal.SIGINT)
7878
wait_for_strings(
7979
target.read,
@@ -120,6 +120,6 @@ def test_gdb_clean_exit():
120120
'line time.sleep(1)',
121121
'return <= stuff: None',
122122
)
123-
target.reset()
123+
target.buff.reset()
124124
tracer.proc.send_signal(signal.SIGINT)
125125
wait_for_strings(target.read, TIMEOUT, 'Doing stuff', 'Doing stuff', 'Doing stuff')

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ deps =
4343
pytest-benchmark
4444
cover: pytest-cov
4545
{cython,cover}: cython==3.0.10
46-
manhole==1.8.0
46+
manhole
4747
process-tests
4848
setuptools-scm
4949
aspectlib

0 commit comments

Comments
 (0)