minor #4423 Remove duplicate test case (jdreesen)

This PR was merged into the 3.x branch.

Discussion
----------

Remove duplicate test case

The test cases in line `7` and `9` were the same.

Commits
-------

d59cc8baa5 Remove duplicate test case
This commit is contained in:
Fabien Potencier
2024-10-30 08:17:12 -04:00
-4
View File
@@ -6,8 +6,6 @@
{{ [1, 5, 3, 4, 5]|find((v) => v > 3) }}
{{ [1, 5, 3, 4, 5]|find((v) => v > 3) }}
{{ {a: 1, b: 2, c: 5, d: 8}|find(v => v > 3) }}
{{ {a: 1, b: 2, c: 5, d: 8}|find((v, k) => (v > 3) and (k != "c")) }}
@@ -33,8 +31,6 @@ return [
5
5
8
5