From: Felipe Pena Date: Wed, 30 Jan 2008 11:43:10 +0000 (+0000) Subject: Fix tests X-Git-Tag: RELEASE_1_3_1~221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ef18ce15d295d2bb34b8770a17894ee5468b3b9;p=php Fix tests --- 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)