[FIX] Hash

Bob Arning arning at charm.net
Fri Aug 4 21:21:35 UTC 2000


On Fri, 04 Aug 2000 14:56:35 -0700 Andres Valloud <avalloud at exobox.com> wrote:
>A quick check to see if this changeset did its work properly is to do
>the following:
>        * Try to get the Set class by typing 'Set' in a workspace and
>then doing a print-it
>        * Open a workspace
>
>If that works, you are in good shape.

Andres,

One additional test you might want to consider is:

s1 _ Set new: 10.
s1 add: 1.
s1 add: 15.

s2 _ Set new: 10.
s2 add: 15.
s2 add: 1.

s1 = s2 ==> true
s1 hash = s2 hash ==> false		"this returned true before your change set"

Cheers,
Bob





More information about the Squeak-dev mailing list