From 5ff6a4e3975cbba029d56b74e2c4d17d04245ee0 Mon Sep 17 00:00:00 2001 From: Duy-Nguyen Ta Date: Thu, 27 Jul 2017 22:32:53 -0400 Subject: [PATCH] update expected cython wrap test output --- wrap/tests/expected-cython/geometry.pyx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wrap/tests/expected-cython/geometry.pyx b/wrap/tests/expected-cython/geometry.pyx index 143662537..838f96aaa 100644 --- a/wrap/tests/expected-cython/geometry.pyx +++ b/wrap/tests/expected-cython/geometry.pyx @@ -180,8 +180,9 @@ cdef class Test: cdef pair [shared_ptr[CTest],shared_ptr[CTest]] ret = self.shared_CTest_.get().create_ptrs() return (Test.cyCreateFromShared(ret.first),Test.cyCreateFromShared(ret.second)) def __str__(self): + strBuf = RedirectCout() self.print_('') - return '' + return strBuf.str() def print_(self): self.shared_CTest_.get().print_() def return_Point2Ptr(self, bool value):