From 4a18fc489f9ea3d253b20dd40f4cdad0d6bb40eb Mon Sep 17 00:00:00 2001 From: ruby0x1 Date: Thu, 8 Apr 2021 21:46:31 -0700 Subject: [PATCH] tests; maps; remove test that now asserts in debug for now, as there doesn't seem to be a way to test for that , it fails CI --- test/api/maps.wren | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/api/maps.wren b/test/api/maps.wren index 433a838b..0957ea8f 100644 --- a/test/api/maps.wren +++ b/test/api/maps.wren @@ -62,7 +62,3 @@ System.print(Maps.contains(containsMap, "other")) // expect: false System.print(Maps.contains()) // expect: true System.print(Maps.containsFalse()) // expect: false - -// - -Maps.invalidInsert(ForeignClass.new()) // expect runtime error: Key must be a value type.