From 5c048ab6019603100abb5d9f38e77afa2bcacaaa Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Mon, 17 Oct 2022 10:07:39 -0700 Subject: [PATCH] fixup! Don't remove existing capitals in python names --- pkg/codegen/python/utilities_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/codegen/python/utilities_test.go b/pkg/codegen/python/utilities_test.go index 2e68d188d9c5..4fc5c0ff812f 100644 --- a/pkg/codegen/python/utilities_test.go +++ b/pkg/codegen/python/utilities_test.go @@ -114,6 +114,7 @@ func TestPythonCase(t *testing.T) { for _, tt := range tests { tt := tt t.Run(tt.input, func(t *testing.T) { + t.Parallel() assert.Equal(t, tt.expected, pythonCase(tt.input)) }) }