From 057d05613955f347dacca6105c218d261988beec Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Wed, 13 Apr 2016 14:42:17 +0200 Subject: [PATCH] fix testcases on Python 3.x --- example/example16.py | 6 +++--- example/example16.ref | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/example16.py b/example/example16.py index 82102ea5..b4bcb655 100644 --- a/example/example16.py +++ b/example/example16.py @@ -7,6 +7,6 @@ from example import return_class_1 from example import return_class_2 from example import return_none -print(type(return_class_1())) -print(type(return_class_2())) -print(type(return_none())) +print(type(return_class_1()).__name__) +print(type(return_class_2()).__name__) +print(type(return_none()).__name__) diff --git a/example/example16.ref b/example/example16.ref index 67fa6077..96003367 100644 --- a/example/example16.ref +++ b/example/example16.ref @@ -1,3 +1,3 @@ - - - +DerivedClass1 +DerivedClass2 +NoneType