Skip to content

Commit

Permalink
Merge pull request etcd-io#16114 from serathius/robustness-test-name-…
Browse files Browse the repository at this point in the history
…separate

tests/robustness: Separate traffic name from cluster setup in test name
  • Loading branch information
serathius committed Jun 20, 2023
2 parents 9c659eb + 1217548 commit 486462a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/robustness/linearizability_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestRobustness(t *testing.T) {
scenarios := []testScenario{}
for _, traffic := range []traffic.Config{traffic.LowTraffic, traffic.HighTraffic, traffic.KubernetesTraffic} {
scenarios = append(scenarios, testScenario{
name: traffic.Name + "ClusterOfSize1",
name: traffic.Name + "/ClusterOfSize1",
traffic: traffic,
cluster: *e2e.NewConfig(
e2e.WithClusterSize(1),
Expand All @@ -61,7 +61,7 @@ func TestRobustness(t *testing.T) {
clusterOfSize3Options = append(clusterOfSize3Options, e2e.WithSnapshotCatchUpEntries(100))
}
scenarios = append(scenarios, testScenario{
name: traffic.Name + "ClusterOfSize3",
name: traffic.Name + "/ClusterOfSize3",
traffic: traffic,
cluster: *e2e.NewConfig(clusterOfSize3Options...),
})
Expand Down

0 comments on commit 486462a

Please sign in to comment.