Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / test_set.nit
index 3d7b480..63eac37 100644 (file)
@@ -18,8 +18,11 @@ do
        s1.add(2)
        s2.add(2)
        s2.add(1)
-       #print s1.hash == s2.hash
+       s2.add(2)
+       print s1.hash == s2.hash
        print s1 == s2
+       s2.add(3)
+       print s1 != s2
        print ""
 end