From 9b7feb25cabcd0ed945fa0dc4bb187333e95586a Mon Sep 17 00:00:00 2001 From: Chris Earle Date: Tue, 29 Mar 2016 17:42:25 -0400 Subject: [PATCH] Adding type to generic call Original commit: elastic/x-pack-elasticsearch@ec1cb8be551a3e499e9ee00eefdb0a5b93c97e5a --- .../shield/authz/accesscontrol/IndicesAccessControlTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/authz/accesscontrol/IndicesAccessControlTests.java b/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/authz/accesscontrol/IndicesAccessControlTests.java index 49d4eb8f2f0..cd711595765 100644 --- a/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/authz/accesscontrol/IndicesAccessControlTests.java +++ b/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/authz/accesscontrol/IndicesAccessControlTests.java @@ -135,7 +135,7 @@ public class IndicesAccessControlTests extends ESTestCase { public void testMergeNotGranted() { final Set notGrantedFields = randomFrom(null, Collections.emptySet(), Collections.singleton("baz")); final Set notGrantedQueries = randomFrom(null, Collections.emptySet(), - Collections.singleton(new BytesArray(new byte[] { randomByte() }))); + Collections.singleton(new BytesArray(new byte[] { randomByte() }))); final IndexAccessControl indexAccessControl = new IndexAccessControl(false, notGrantedFields, notGrantedQueries); final BytesReference query1 = new BytesArray(new byte[] { 0x1 });