Skip to content

Commit

Permalink
Set longer timeout on TestEncoderRegression
Browse files Browse the repository at this point in the history
Fixes #165
  • Loading branch information
klauspost committed Oct 1, 2019
1 parent 4a036c5 commit 29f61c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zstd/encoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func TestEncoder_EncodeAllEncodeXML(t *testing.T) {
}

func TestEncoderRegression(t *testing.T) {
defer timeout(30 * time.Second)()
defer timeout(2 * time.Minute)()
data, err := ioutil.ReadFile("testdata/comp-crashers.zip")
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 29f61c4

Please sign in to comment.