From 7ef18ce15d295d2bb34b8770a17894ee5468b3b9 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Wed, 30 Jan 2008 11:43:10 +0000 Subject: [PATCH] Fix tests --- ext/reflection/tests/reflectionClass_isInstance_basic.phpt | 2 +- ext/reflection/tests/reflectionObject_isInstance_basic.phpt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/reflection/tests/reflectionClass_isInstance_basic.phpt b/ext/reflection/tests/reflectionClass_isInstance_basic.phpt index e8b1e9d801..ab635582b2 100644 --- a/ext/reflection/tests/reflectionClass_isInstance_basic.phpt +++ b/ext/reflection/tests/reflectionClass_isInstance_basic.phpt @@ -33,7 +33,7 @@ is myA a A? bool(true) is myB a A? bool(false) is myC a A? bool(false) is myX a A? bool(false) -is myA a B? bool(false) +is myA a B? bool(true) is myB a B? bool(true) is myC a B? bool(false) is myX a B? bool(false) diff --git a/ext/reflection/tests/reflectionObject_isInstance_basic.phpt b/ext/reflection/tests/reflectionObject_isInstance_basic.phpt index 51d42fdf98..627963683d 100644 --- a/ext/reflection/tests/reflectionObject_isInstance_basic.phpt +++ b/ext/reflection/tests/reflectionObject_isInstance_basic.phpt @@ -25,7 +25,7 @@ foreach ($classes as $class) { is myA a A? bool(true) is myB a A? bool(false) is myX a A? bool(false) -is myA a B? bool(false) +is myA a B? bool(true) is myB a B? bool(true) is myX a B? bool(false) is myA a X? bool(false) -- 2.50.1