Skip to content

Commit

Permalink
Fix conflicting ports in test fixtures (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-evans authored Nov 9, 2023
1 parent 28169e1 commit 8f9d297
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/test/harness/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ var TopicExporter = ComposeHarness{
// ACLApplier represents the compose harness for the acl applier tests.
var ACLApplier = ComposeHarness{
ComposeFilePaths: []string{"../../test/fixtures/compose/1-broker-sasl-plain-compose.yml"},
ZookeeperPort: zookeeperPort + 10200,
BrokerPort: brokerPort + 10200,
ZookeeperPort: zookeeperPort + 10600,
BrokerPort: brokerPort + 10600,
Brokers: 1,
}

// ACLExporter represents the compose harness for the acl exporter tests.
var ACLExporter = ComposeHarness{
ComposeFilePaths: []string{"../../test/fixtures/compose/1-broker-sasl-plain-compose.yml"},
ZookeeperPort: zookeeperPort + 10300,
BrokerPort: brokerPort + 10300,
ZookeeperPort: zookeeperPort + 10700,
BrokerPort: brokerPort + 10700,
Brokers: 1,
}

0 comments on commit 8f9d297

Please sign in to comment.