We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff2bd8 commit c69593eCopy full SHA for c69593e
pkg/typecheck/typecheck_test.go
@@ -511,17 +511,17 @@ func TestIsMap(t *testing.T) {
511
name: "pass - Valid map",
512
m: map[string]interface{}{},
513
want: true,
514
- }
+ },
515
{
516
name: "pass - Invalid map",
517
m: "Invalid map",
518
want: false,
519
520
521
name: "pass - Invalid map (2)",
522
m: int(2),
523
524
525
}
526
for _, tt := range tests {
527
t.Run(tt.name, func(t *testing.T) {
0 commit comments