[TEST] Remove needless ClusterScope annotation from NettyTransportMultiPortTests

NettyTransportMultiPortTests is not an integration test, it doesn't rely on the test cluster thus the ClusterScope annotation doesn't have any effect.
This commit is contained in:
javanna 2015-02-03 15:45:52 +01:00 committed by Luca Cavanna
parent 0e67dda15d
commit 338766fd4d
1 changed files with 0 additions and 3 deletions

View File

@ -42,11 +42,8 @@ import java.net.InetSocketAddress;
import java.net.Socket;
import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder;
import static org.elasticsearch.test.ElasticsearchIntegrationTest.ClusterScope;
import static org.elasticsearch.test.ElasticsearchIntegrationTest.Scope;
import static org.hamcrest.Matchers.is;
@ClusterScope(scope = Scope.TEST, numDataNodes = 1)
public class NettyTransportMultiPortTests extends ElasticsearchTestCase {
private NettyTransport nettyTransport;