Skip to content

Commit

Permalink
test: fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Sep 4, 2024
1 parent 37e304a commit acda10a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ func TestPrint(t *testing.T) {
t.Run("ach", func(t *testing.T) {
var buf bytes.Buffer

routingNumber := "021201383"
participants := []moov.AchParticipant{
{
RoutingNumber: "021201383",
RoutingNumber: routingNumber,
OfficeCode: "O",
ServicingFRBNumber: "021001208",
RecordTypeCode: "1",
Expand All @@ -43,7 +44,7 @@ func TestPrint(t *testing.T) {
},
},
}
printAchParticipants(&buf, participants)
printAchParticipants(&buf, routingNumber, participants)

expected := strings.TrimSpace(`
Routing Number Customer Name Phone Number Address
Expand Down

0 comments on commit acda10a

Please sign in to comment.