diff options
-rw-r--r-- | ext/reflection/tests/reflectionClass_isInstance_basic.phpt | 2 | ||||
-rw-r--r-- | 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) |