Skip to content

Commit 39fe2ea

Browse files
authored
fix: incorrectly named golden file (#7216)
* fix: incorrectly named golden file * refactor: remove obsolete golden files for list operations
1 parent 3369d1c commit 39fe2ea

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed

plutus-tx-plugin/test/BuiltinList/Budget/Spec.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ tests =
3535
, goldenBundle "empty" empty (empty `unsafeApplyCode` l1)
3636
, goldenBundle "singleton" singleton (singleton `unsafeApplyCode` l1)
3737
, goldenBundle "null" null (null `unsafeApplyCode` l1)
38-
, goldenBundle "(++)" (++) ((++) `unsafeApplyCode` l1)
39-
, goldenBundle "(<|)" (<|) ((<|) `unsafeApplyCode` l1)
38+
, goldenBundle "concat_operator" (++) ((++) `unsafeApplyCode` l1)
39+
, goldenBundle "cons_operator" (<|) ((<|) `unsafeApplyCode` l1)
4040
, goldenBundle "append" append (append `unsafeApplyCode` l1)
4141
, goldenBundle "findIndices" findIndices (findIndices `unsafeApplyCode` l1)
4242
, goldenBundle "filter" filter (filter `unsafeApplyCode` l1)

0 commit comments

Comments
 (0)