From 626e0d4e60db2b81a0505fa9c61941e608624e7e Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 29 Nov 2023 08:50:53 +0100 Subject: [PATCH] Unbroke tests/test_test_bjson.js --- tests/test_bjson.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/test_bjson.js b/tests/test_bjson.js index faa22a6..f15ef91 100644 --- a/tests/test_bjson.js +++ b/tests/test_bjson.js @@ -144,18 +144,6 @@ function bjson_test_reference() } } -function bjson_test_regexp() -{ - var buf, r; - - bjson_test(/xyzzy/); - bjson_test(/xyzzy/digu); - - buf = bjson.write(/(?<𝓓𝓸𝓰>dog)/); - r = bjson.read(buf, 0, buf.byteLength); - assert("sup dog".match(r).groups["𝓓𝓸𝓰"], "dog"); -} - function bjson_test_all() { var obj; @@ -198,7 +186,6 @@ function bjson_test_all() } bjson_test_reference(); - bjson_test_regexp(); } bjson_test_all();