Skip to content

Commit

Permalink
fix: remaining test errors
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Stewart <[email protected]>
  • Loading branch information
paralin committed Apr 10, 2024
1 parent a1bcbc9 commit daf7a7b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 136 deletions.
1 change: 0 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
with:
languages: ${{ matrix.language }}


- name: Autobuild
uses: github/codeql-action/autobuild@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10

Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/test.yml

This file was deleted.

100 changes: 0 additions & 100 deletions cmd/protoc-gen-go/annotation_test.go

This file was deleted.

4 changes: 2 additions & 2 deletions compiler/protogen/protogen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ var _ = string1.X // "golang.org/z/string"
if err != nil {
t.Fatalf("g.Content() = %v", err)
}
if diff := cmp.Diff(want, got); diff != "" {
if diff := cmp.Diff(want, string(got)); diff != "" {
t.Fatalf("content mismatch (-want +got):\n%s", diff)
}
}
Expand Down Expand Up @@ -344,7 +344,7 @@ var _ = bar.X
if err != nil {
t.Fatalf("g.Content() = %v", err)
}
if diff := cmp.Diff(want, got); diff != "" {
if diff := cmp.Diff(want, string(got)); diff != "" {
t.Fatalf("content mismatch (-want +got):\n%s", diff)
}
}
Expand Down

0 comments on commit daf7a7b

Please sign in to comment.