diff options
author | Felipe Pena <felipe@php.net> | 2008-01-30 16:06:44 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-01-30 16:06:44 +0000 |
commit | 544f6dfd4946fd29c269c5c528f2006a6fdbb308 (patch) | |
tree | e4795b407bf3213a40e0d7e9372a0da9c8630bff /ext/reflection/tests | |
parent | 8a64e9de36e2e5e9652c49c0eb29463379db19f2 (diff) | |
download | php-git-544f6dfd4946fd29c269c5c528f2006a6fdbb308.tar.gz |
Fix test
Diffstat (limited to 'ext/reflection/tests')
-rw-r--r-- | ext/reflection/tests/reflectionClass_isInstance_basic.phpt | 6 | ||||
-rw-r--r-- | ext/reflection/tests/reflectionObject_isInstance_basic.phpt | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ext/reflection/tests/reflectionClass_isInstance_basic.phpt b/ext/reflection/tests/reflectionClass_isInstance_basic.phpt index ab635582b2..2da09449ff 100644 --- a/ext/reflection/tests/reflectionClass_isInstance_basic.phpt +++ b/ext/reflection/tests/reflectionClass_isInstance_basic.phpt @@ -30,10 +30,10 @@ foreach ($classes as $class) { ?> --EXPECTF-- is myA a A? bool(true) -is myB a A? bool(false) +is myB a A? bool(true) is myC a A? bool(false) is myX a A? bool(false) -is myA a B? bool(true) +is myA a B? bool(false) is myB a B? bool(true) is myC a B? bool(false) is myX a B? bool(false) @@ -43,7 +43,7 @@ is myC a C? bool(true) is myX a C? bool(false) is myA a I? bool(false) is myB a I? bool(false) -is myC a I? bool(false) +is myC a I? bool(true) is myX a I? bool(false) is myA a X? bool(false) is myB a X? bool(false) diff --git a/ext/reflection/tests/reflectionObject_isInstance_basic.phpt b/ext/reflection/tests/reflectionObject_isInstance_basic.phpt index 627963683d..ef605aad84 100644 --- a/ext/reflection/tests/reflectionObject_isInstance_basic.phpt +++ b/ext/reflection/tests/reflectionObject_isInstance_basic.phpt @@ -23,9 +23,9 @@ foreach ($classes as $class) { ?> --EXPECTF-- is myA a A? bool(true) -is myB a A? bool(false) +is myB a A? bool(true) is myX a A? bool(false) -is myA a B? bool(true) +is myA a B? bool(false) is myB a B? bool(true) is myX a B? bool(false) is myA a X? bool(false) |