Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Jul 12, 2024
1 parent 2fb711d commit c119c1c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rlp/rlpgen/gen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"go/types"
"os"
"path/filepath"
"runtime"
"testing"

"github.com/stretchr/testify/assert"
Expand All @@ -51,6 +52,9 @@ func init() {
var tests = []string{"uints", "nil", "rawvalue", "optional", "bigint", "uint256"}

func TestOutput(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("no reason to test, but \r\n handle will make tests more complex")
}
for _, test := range tests {
test := test
t.Run(test, func(t *testing.T) {
Expand Down

0 comments on commit c119c1c

Please sign in to comment.