test_class: use gc_collect instead of detail_reg_inst side-effect

This commit is contained in:
Jason Rhinelander 2017-07-26 13:52:53 -04:00
parent b468a3cefc
commit 9866a0f994
1 changed files with 5 additions and 5 deletions

View File

@ -159,11 +159,11 @@ def test_operator_new_delete(capture):
with capture:
del a
ConstructorStats.detail_reg_inst()
pytest.gc_collect()
del b
ConstructorStats.detail_reg_inst()
pytest.gc_collect()
del d
ConstructorStats.detail_reg_inst()
pytest.gc_collect()
assert capture == """
A delete
B delete 4
@ -172,9 +172,9 @@ def test_operator_new_delete(capture):
with capture:
del c
ConstructorStats.detail_reg_inst()
pytest.gc_collect()
del c2
ConstructorStats.detail_reg_inst()
pytest.gc_collect()
assert capture == (
"C delete " + sz_noalias + "\n" +
"C delete " + sz_alias + "\n"