File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
server/src/test/java/org/elasticsearch Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,11 @@ public class TransportVersionTests extends ESTestCase {
3131 * This test is specific for V9, to ensure that transport versions are backported correctly.
3232 */
3333 public void testMaximumAllowedTransportVersion () {
34- assertThat (TransportVersions .LATEST_DEFINED .onOrBefore (TransportVersions .ELASTICSEARCH_9_0 ) ||
35- TransportVersions .LATEST_DEFINED .isPatchFrom (TransportVersions .ELASTICSEARCH_9_0 ), is (true ));
34+ assertThat (
35+ TransportVersions .LATEST_DEFINED .onOrBefore (TransportVersions .ELASTICSEARCH_9_0 )
36+ || TransportVersions .LATEST_DEFINED .isPatchFrom (TransportVersions .ELASTICSEARCH_9_0 ),
37+ is (true )
38+ );
3639 }
3740
3841 public void testVersionComparison () {
You can’t perform that action at this time.
0 commit comments