Skip to content

Commit

Permalink
[TEST] Don't use shaded API
Browse files Browse the repository at this point in the history
  • Loading branch information
s1monw committed Jun 8, 2015
1 parent 5af8412 commit 26b0dae
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -19,7 +19,6 @@

package org.elasticsearch.script.javascript;

import org.elasticsearch.common.collect.Lists;
import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.script.ExecutableScript;
Expand All @@ -28,6 +27,7 @@
import org.junit.Before;
import org.junit.Test;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -64,7 +64,7 @@ public void testMapAccess() {
Map<String, Object> vars = new HashMap<String, Object>();

Map<String, Object> obj2 = MapBuilder.<String, Object>newMapBuilder().put("prop2", "value2").map();
Map<String, Object> obj1 = MapBuilder.<String, Object>newMapBuilder().put("prop1", "value1").put("obj2", obj2).put("l", Lists.newArrayList("2", "1")).map();
Map<String, Object> obj1 = MapBuilder.<String, Object>newMapBuilder().put("prop1", "value1").put("obj2", obj2).put("l", Arrays.asList("2", "1")).map();
vars.put("obj1", obj1);
Object o = se.execute(se.compile("obj1"), vars);
assertThat(o, instanceOf(Map.class));
Expand Down Expand Up @@ -123,7 +123,7 @@ public void testAccessListInScript() {
Map<String, Object> vars = new HashMap<String, Object>();
Map<String, Object> obj2 = MapBuilder.<String, Object>newMapBuilder().put("prop2", "value2").map();
Map<String, Object> obj1 = MapBuilder.<String, Object>newMapBuilder().put("prop1", "value1").put("obj2", obj2).map();
vars.put("l", Lists.newArrayList("1", "2", "3", obj1));
vars.put("l", Arrays.asList("1", "2", "3", obj1));

Object o = se.execute(se.compile("l.length"), vars);
assertThat(((Number) o).intValue(), equalTo(4));
Expand Down

0 comments on commit 26b0dae

Please sign in to comment.