Skip to content

Commit acbe2df

Browse files
authored
protoc-gen-go: fix release tag in golden_test (#590)
The 1.9 release tag is "go1.9", not "1.9".
1 parent fae8ec6 commit acbe2df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protoc-gen-go/golden_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func TestGolden(t *testing.T) {
3939

4040
// Find all the proto files we need to compile. We assume that each directory
4141
// contains the files for a single package.
42-
supportTypeAliases := hasReleaseTag("1.9")
42+
supportTypeAliases := hasReleaseTag("go1.9")
4343
packages := map[string][]string{}
4444
err = filepath.Walk("testdata", func(path string, info os.FileInfo, err error) error {
4545
if filepath.Base(path) == "import_public" && !supportTypeAliases {

0 commit comments

Comments
 (0)