summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-08-29 17:45:50 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-08-29 17:45:50 +0200
commit40e2956e89eb1db62bef64f15c46fb4c8e022432 (patch)
treeb57b1da23484d52d354ca0f00052ec00d559ea42
parentfc634304badd7eabdd8ef6db9ec40d9fa84ff855 (diff)
downloadcython-40e2956e89eb1db62bef64f15c46fb4c8e022432.tar.gz
ignore gc.collect() result in test
-rw-r--r--tests/run/double_dealloc_T796.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/double_dealloc_T796.pyx b/tests/run/double_dealloc_T796.pyx
index 48b0b2c9e..fadb22805 100644
--- a/tests/run/double_dealloc_T796.pyx
+++ b/tests/run/double_dealloc_T796.pyx
@@ -1,5 +1,5 @@
"""
->>> gc.collect()
+>>> _ = gc.collect()
>>> x = SimpleGarbage()
SimpleGarbage(1) __cinit__
>>> del x