From 4a5c7c262a53ab5ac434e8c17aa1dce34996e08b Mon Sep 17 00:00:00 2001 From: Hongbo Zhang Date: Sat, 12 Oct 2024 14:57:47 +0800 Subject: [PATCH] failed: the location of first argument cannot be None --- builtin/linked_hash_set_test.mbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/linked_hash_set_test.mbt b/builtin/linked_hash_set_test.mbt index 04004ab64..a9928595e 100644 --- a/builtin/linked_hash_set_test.mbt +++ b/builtin/linked_hash_set_test.mbt @@ -153,7 +153,7 @@ test "array unique via Set" { let v = [1, 2, 3, 4, 5, 3, 2, 4, 5] let h = Set::from_iter(v.iter()) let v = [..h] - // @json.inspect!([..h]) + @json.inspect!([..h]) @json.inspect!(v, content=[1, 2, 3, 4, 5]) }