Skip to content

Commit

Permalink
test(config): fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zenithar committed Nov 29, 2024
1 parent 338526e commit 9af486e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ func TestMustLoadConfig(t *testing.T) {
},
Builder: BuilderConfig{
Vertex: VertexBuilderConfig{
BatchSize: 500,
BatchSizeSmall: 100,
BatchSize: 250,
BatchSizeSmall: 50,
},
Edge: EdgeBuilderConfig{
LargeClusterOptimizations: DefaultLargeClusterOptimizations,
WorkerPoolSize: 5,
WorkerPoolCapacity: 100,
BatchSize: 500,
BatchSizeSmall: 100,
BatchSize: 250,
BatchSizeSmall: 50,
BatchSizeClusterImpact: 10,
},
},
Expand Down Expand Up @@ -145,7 +145,7 @@ func TestMustLoadConfig(t *testing.T) {
Builder: BuilderConfig{
Vertex: VertexBuilderConfig{
BatchSize: 1000,
BatchSizeSmall: 100,
BatchSizeSmall: 50,
},
Edge: EdgeBuilderConfig{
LargeClusterOptimizations: true,
Expand Down

0 comments on commit 9af486e

Please sign in to comment.