From b032914876cbbc90e7b024bf5e25f8f31420bd6a Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Wed, 15 Oct 2003 16:20:15 +0000 Subject: [PATCH] Fix problem with shared_ptr holder [SVN r20392] --- test/test_vector_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_vector_common.py b/test/test_vector_common.py index 977a1964..4c2d5c6a 100644 --- a/test/test_vector_common.py +++ b/test/test_vector_common.py @@ -72,7 +72,7 @@ Got expected exception >>> v[-2:-1] = [] # Delete slice via __setitem__ >>> print [ x for x in v ] [1, 2, 4, 5, 6, 7, 8] ->>> v [-2:-1] = [9, 10] # Replace and insert via slice +>>> v [-2:-1] = [element_type(9), element_type(10)] # Replace, insert via slice >>> print [ x for x in v ] [1, 2, 4, 5, 6, 9, 10, 8] >>> try: