From 7f40dee72cc37d2b8df730d6f273d8c3c145fa36 Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Sat, 19 Oct 2024 14:00:49 +0200 Subject: [PATCH] Fix variable name in test. --- .../TruffleSqueakTest.class/instance/testVMIntrospection.st | 2 +- .../TruffleSqueakTest.class/methodProperties.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/instance/testVMIntrospection.st b/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/instance/testVMIntrospection.st index 86ba4d200..3b48c9464 100644 --- a/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/instance/testVMIntrospection.st +++ b/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/instance/testVMIntrospection.st @@ -13,7 +13,7 @@ testVMIntrospection "Allocate Object[]" self assert: 10 equals: (testObject getOtherPointers getClass new: 10) size. "Test inst vars" - self assert: (testObject allInstVarNames includesAllOf: #('squeakClass' 'squeahHashAndBits' 'superclass' 'methodDict')). + self assert: (testObject allInstVarNames includesAllOf: #('squeakClass' 'squeakHashAndBits' 'superclass' 'methodDict')). self deny: (testObject allInstVarNames includesAnyOf: #('clone' 'become' 'finalize' 'object0')). "Read and write inst vars" squeahHashAndBits := testObject squeahHashAndBits. diff --git a/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/methodProperties.json b/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/methodProperties.json index 4a9f1c6b7..b28f783af 100644 --- a/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/methodProperties.json +++ b/src/TruffleSqueak-Tests.package/TruffleSqueakTest.class/methodProperties.json @@ -8,4 +8,4 @@ "testCallTarget" : "fn 10/26/2021 21:10", "testLayoutStatistics" : "fn 5/13/2020 17:37", "testTestMapConsistency" : "fn 3/9/2021 15:59", - "testVMIntrospection" : "fn 8/20/2022 11:13" } } + "testVMIntrospection" : "fn 10/19/2024 14:00" } }