venkateshwaracholan opened a new issue, #4837:
URL: https://github.com/apache/polaris/issues/4837
### Describe the bug
The integration test `ITAzuriteExtension` currently performs the same
assertion on `azurite.endpoint()` twice:
```java
soft.assertThat(azurite.endpoint()).isNotEmpty().startsWith("http");
soft.assertThat(azurite.endpoint()).isNotEmpty().startsWith("http");
```
Both assertions validate exactly the same condition, making the second
assertion redundant. This appears to be an accidental copy-paste leftover
rather than an intentional additional check.
Removing the duplicate assertion would make the test easier to read and
maintain while preserving its existing behavior and coverage.
### To Reproduce
_No response_
### Actual Behavior
_No response_
### Expected Behavior
_No response_
### Additional context
_No response_
### System information
_No response_
--
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]