slightly better test

This commit is contained in:
Ben Kraft
2020-04-10 18:17:27 -07:00
parent 7ab06dfd30
commit 1cde2fe351
+1 -1
View File
@@ -58,7 +58,7 @@ func TestGoConstName(t *testing.T) {
{"AllCaps", "ASDF", "asdf"},
{"AllCapsWithUnderscore", "ASDF_GH", "asdfGh"},
{"JustUnderscore", "_", "_"},
{"LeadingUnderscore", "_ASDF", "_asdf"},
{"LeadingUnderscore", "_ASDF_GH", "_asdfGh"},
}
testStringFunc(t, goConstName, tests)