BewareMyPower opened a new issue, #23079:
URL: https://github.com/apache/pulsar/issues/23079

   ### Search before asking
   
   - [X] I searched in the [issues](https://github.com/apache/pulsar/issues) 
and found nothing similar.
   
   
   ### Read release policy
   
   - [X] I understand that unsupported versions don't get bug fixes. I will 
attempt to reproduce the issue on a supported version of Pulsar client and 
Pulsar broker.
   
   
   ### Version
   
   master branch
   
   ### Minimal reproduce step
   
   Add a test `pulsar-broker/src/test/java/org/apache/pulsar/SimpleTest.java`
   
   ```java
   package org.apache.pulsar;
   
   // 1. The import order is wrong
   import org.testng.annotations.Test;
   import org.testng.Assert;
   
   public class SimpleTest {
       @Test // 2. The indents and number blanks are wrong
       public void test() {Assert.assertEquals(1 + 2, 3);}
   }
   ```
   
   Run
   
   ```bash
   mvn initialize checkstyle:check -pl pulsar-broker
   ```
   
   ### What did you expect to see?
   
   The `checkstyle:check` should fail.
   
   ### What did you see instead?
   
   It succeeded.
   
   ### Anything else?
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [ ] I'm willing to submit a PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to