2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Return an int, not a string, on success from

check_numeric_array_rich_slice, since that's what the tests expect.


[SVN r35184]
This commit is contained in:
Dave Abrahams
2006-09-18 22:21:50 +00:00
parent 41a342f026
commit bed1d26904

View File

@@ -87,7 +87,7 @@ object check_numeric_array_rich_slice()
// original[:-3:-1, :-3,-1] == array( [[44, 43], [34, 33]])
ASSERT_EQUAL(original[make_tuple( slice(_,-3,-1), slice(_,-3,-1))],lower_right_quadrant_reversed);
return str(1);
return object(1);
}
// Verify functions accepting a slice argument can be called