From 21bf16f5b852ea2d92446dcb549b9b3fcdd4c2d1 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Mon, 10 Jun 2019 12:56:38 -0700 Subject: [PATCH] misc. comment typo (#1629) --- tests/test_smart_ptr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_smart_ptr.py b/tests/test_smart_ptr.py index 72b1c2a1..0a3bb58e 100644 --- a/tests/test_smart_ptr.py +++ b/tests/test_smart_ptr.py @@ -128,7 +128,7 @@ def test_unique_deleter(): o = m.MyObject4b(23) assert o.value == 23 cstats4a = ConstructorStats.get(m.MyObject4a) - assert cstats4a.alive() == 2 # Two becaue of previous test + assert cstats4a.alive() == 2 # Two because of previous test cstats4b = ConstructorStats.get(m.MyObject4b) assert cstats4b.alive() == 1 del o