From 4be1bb53b351c86a6fb33be1e247b5fda78b0fd1 Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Tue, 23 Jan 2024 15:32:32 -0800 Subject: [PATCH] Add regression test Refs #825. --- coconut/tests/src/cocotest/agnostic/primary_2.coco | 1 + 1 file changed, 1 insertion(+) diff --git a/coconut/tests/src/cocotest/agnostic/primary_2.coco b/coconut/tests/src/cocotest/agnostic/primary_2.coco index 102a7bf88..b9605646e 100644 --- a/coconut/tests/src/cocotest/agnostic/primary_2.coco +++ b/coconut/tests/src/cocotest/agnostic/primary_2.coco @@ -434,6 +434,7 @@ def primary_test_2() -> bool: assert (,) ↤* (1, 2, 3) == (1, 2, 3) assert (,) ↤? None is None assert (,) ↤*? None is None # type: ignore + assert '''\u2029'''!='''\n''' with process_map.multiple_sequential_calls(): # type: ignore assert map((+), range(3), range(4)$[:-1], strict=True) |> list == [0, 2, 4] == process_map((+), range(3), range(4)$[:-1], strict=True) |> list # type: ignore