Skip to content

Commit c69593e

Browse files
fix(xrpl): linting on test
1 parent 6ff2bd8 commit c69593e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/typecheck/typecheck_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,17 +511,17 @@ func TestIsMap(t *testing.T) {
511511
name: "pass - Valid map",
512512
m: map[string]interface{}{},
513513
want: true,
514-
}
514+
},
515515
{
516516
name: "pass - Invalid map",
517517
m: "Invalid map",
518518
want: false,
519-
}
519+
},
520520
{
521521
name: "pass - Invalid map (2)",
522522
m: int(2),
523523
want: false,
524-
}
524+
},
525525
}
526526
for _, tt := range tests {
527527
t.Run(tt.name, func(t *testing.T) {

0 commit comments

Comments
 (0)