tests/efmls-configs: fix eval error

This commit is contained in:
Austin Horstman 2024-12-14 17:27:59 -06:00
parent fd279c892d
commit c351af103f
No known key found for this signature in database

View file

@ -99,7 +99,7 @@
# Look into `nestedTypes.left` for the enum # Look into `nestedTypes.left` for the enum
possible = toolType.nestedTypes.elemType; possible = toolType.nestedTypes.elemType;
# possible is an enum, look into functor.payload for the variants # possible is an enum, look into functor.payload for the variants
toolList = possible.functor.payload; toolList = possible.functor.payload.values;
in in
builtins.filter (t: !builtins.elem t (brokenTools ++ unpackaged)) toolList; builtins.filter (t: !builtins.elem t (brokenTools ++ unpackaged)) toolList;
in in