Skip to content

Commit

Permalink
Fixed capture operator
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianRodriguezMolina committed Mar 16, 2023
1 parent 2260eae commit 43f21b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/xdr/contract/spec/sc_spec_entry_kind_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule StellarBase.XDR.SCSpecEntryKindTest do
setup do
%{
types: @types,
results: Enum.map(@types, fn type -> SCSpecEntryKind.new(type) end),
results: Enum.map(@types, &SCSpecEntryKind.new(&1)),
binaries: @binaries
}
end
Expand Down
2 changes: 1 addition & 1 deletion test/xdr/contract/spec/sc_spec_type_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ defmodule StellarBase.XDR.SCSpecTypeTest do
setup do
%{
types: @types,
results: Enum.map(@types, fn type -> SCSpecType.new(type) end),
results: Enum.map(@types, &SCSpecType.new(&1)),
binaries: @binaries
}
end
Expand Down
2 changes: 1 addition & 1 deletion test/xdr/contract/spec/sc_spec_udt_union_v0_kind_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defmodule StellarBase.XDR.SCSpecUDTUnionCaseV0KindTest do
setup do
%{
types: @types,
results: Enum.map(@types, fn type -> SCSpecUDTUnionCaseV0Kind.new(type) end),
results: Enum.map(@types, &SCSpecUDTUnionCaseV0Kind.new(&1)),
binaries: @binaries
}
end
Expand Down

0 comments on commit 43f21b6

Please sign in to comment.