aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2021-02-26 21:03:03 +0100
committerCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2021-02-26 21:03:03 +0100
commit95cd17442d9d9d0d161fb49fcb1955b9a35af547 (patch)
treee165b0988c53af68c6446c9bc66292084edb291f
parentfix translation (diff)
downloadpypy-95cd17442d9d9d0d161fb49fcb1955b9a35af547.tar.gz
pypy-95cd17442d9d9d0d161fb49fcb1955b9a35af547.tar.bz2
pypy-95cd17442d9d9d0d161fb49fcb1955b9a35af547.zip
remove pdb
-rw-r--r--rpython/rlib/test/test_rstring.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rpython/rlib/test/test_rstring.py b/rpython/rlib/test/test_rstring.py
index a2ce14e0a8..5fda0275e2 100644
--- a/rpython/rlib/test/test_rstring.py
+++ b/rpython/rlib/test/test_rstring.py
@@ -336,7 +336,5 @@ def test_hypothesis_search(needle, pieces, by, maxcount):
input = needle.join(pieces)
assume(len(input) > 0)
- if needle == '' and pieces == [] and by == '0' and maxcount == 1:
- import pdb; pdb.set_trace()
res = replace(input, needle, by, maxcount)
assert res == input.replace(needle, by, maxcount)