We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efc8544 + efee506 commit 6d39d68Copy full SHA for 6d39d68
gosnippets/UltiSnips/go.snippets
@@ -438,7 +438,7 @@ endsnippet
438
439
# test t.Run
440
snippet tr "t.Run(XYZ, func(t *testing.T){ ... })"
441
-t.Run("${0}", func(t *testing){
+t.Run("${0}", func(t *testing.T){
442
443
})
444
endsnippet
gosnippets/snippets/go.snip
@@ -318,7 +318,7 @@ abbr func TestXYZ(t *testing.T) { ... }
318
319
snippet tr
320
abbr t.Run("test name", func(t *testing.T){ ... })
321
- t.Run("${0}", func(t *testing){
+ t.Run("${0}", func(t *testing.T){
322
323
324
# test table snippet
0 commit comments