Skip to content

Commit

Permalink
artifact: fix test case of default values
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Feb 13, 2023
1 parent a0d99e9 commit 29a4abf
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions client/config/artifact_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ func TestArtifactConfigFromAgent(t *testing.T) {
name: "from default",
config: config.DefaultArtifactConfig(),
exp: &ArtifactConfig{
HTTPReadTimeout: 30 * time.Minute,
HTTPMaxBytes: 100_000_000_000,
GCSTimeout: 30 * time.Minute,
GitTimeout: 30 * time.Minute,
HgTimeout: 30 * time.Minute,
S3Timeout: 30 * time.Minute,
HTTPReadTimeout: 30 * time.Minute,
HTTPMaxBytes: 100_000_000_000,
GCSTimeout: 30 * time.Minute,
GitTimeout: 30 * time.Minute,
HgTimeout: 30 * time.Minute,
S3Timeout: 30 * time.Minute,
DecompressionLimitFileCount: 4096,
DecompressionLimitSize: 100_000_000_000,
},
},
{
Expand Down

0 comments on commit 29a4abf

Please sign in to comment.