MINOR: Fix incorrect scala example in README of test-common (#17837)

Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
TengYao Chi 2024-11-18 18:03:17 +08:00 committed by GitHub
parent 00cd9cd3f9
commit 381fbc1359
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ Multiple `@ClusterTest` annotations can be given to generate more than one test
```scala
@ClusterTests(Array(
@ClusterTest(brokerSecurityProtocol = SecurityProtocol.PLAINTEXT),
@ClusterTest(securityProtocol = SecurityProtocol.SASL_PLAINTEXT)
new ClusterTest(brokerSecurityProtocol = SecurityProtocol.PLAINTEXT),
new ClusterTest(brokerSecurityProtocol = SecurityProtocol.SASL_PLAINTEXT)
))
def testSomething(): Unit = { ... }
```