lib: remove specialization link between Map and Sequence
[nit.git] / tests / test_list.nit
index fe5e79b..a54713e 100644 (file)
@@ -52,9 +52,6 @@ do
     print(l)
     print(l.has(3))
     print(not l.has(9))
-    print(l.has_key(3))
-    print(not l.has_key(-3))
-    print(not l.has_key(30))
     print(l[1] == 2)
     print(l.first == 1)
     print(l.last == 6)