-
-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix test flakiness due to problem that proto serialization is not can…
…onical
- Loading branch information
1 parent
9734bbe
commit df67fca
Showing
3 changed files
with
66 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"os" | ||
|
||
"github.com/reviewdog/reviewdog/service/github" | ||
) | ||
|
||
func main() { | ||
if len(os.Args) == 1 { | ||
log.Fatal("require one argument") | ||
} | ||
meta, err := github.DecodeMetaComment(os.Args[1]) | ||
if err != nil { | ||
log.Fatalf("failed to decode meta comment: %v", err) | ||
} | ||
fmt.Printf("%v\n", meta) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters