From 1d063878a2276ade4a9fb486ff2290b880042043 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sat, 10 Jun 2017 17:54:13 +0200 Subject: [PATCH] Fix reference to lang.Object --- .../unittest/reflection/HackLanguageSupportTest.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/php/net/xp_framework/unittest/reflection/HackLanguageSupportTest.class.php b/src/test/php/net/xp_framework/unittest/reflection/HackLanguageSupportTest.class.php index 4da2b04c41..9fb1a44c71 100644 --- a/src/test/php/net/xp_framework/unittest/reflection/HackLanguageSupportTest.class.php +++ b/src/test/php/net/xp_framework/unittest/reflection/HackLanguageSupportTest.class.php @@ -77,7 +77,7 @@ public function map_of_int_type() { #[@test] public function nullable_type() { - $this->assertEquals(XPClass::forName('lang.Object'), Type::forName('?lang\Object')); + $this->assertEquals(XPClass::forName('lang.Value'), Type::forName('?lang\Value')); } #[@test]