]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed import
authorJohn Alhroos <john.ahlroos@itmill.com>
Mon, 19 Apr 2010 14:54:49 +0000 (14:54 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Mon, 19 Apr 2010 14:54:49 +0000 (14:54 +0000)
svn changeset:12655/svn branch:6.4

tests/src/com/vaadin/tests/server/component/table/TestMultipleSelection.java

index ff31e20a3ed5f2e507309f4c80f0b7a3afc964eb..42d60bdfef2d06f9946a2596786c92efb8057947 100644 (file)
@@ -1,10 +1,10 @@
 package com.vaadin.tests.server.component.table;
 
+import java.util.Arrays;
 import java.util.Set;
 
 import junit.framework.TestCase;
 
-import com.google.appengine.repackaged.com.google.common.collect.Lists;
 import com.vaadin.data.Container;
 import com.vaadin.data.util.IndexedContainer;
 import com.vaadin.ui.Table;
@@ -24,7 +24,8 @@ public class TestMultipleSelection extends TestCase {
         assertTrue(table.isMultiSelect());
 
         // Test multiselect by setting several items at once
-        table.setValue(Lists.asList("1", new String[] { "3" }));
+
+        table.setValue(Arrays.asList("1", new String[] { "3" }));
         assertEquals(2, ((Set<String>) table.getValue()).size());
     }
 
@@ -49,7 +50,7 @@ public class TestMultipleSelection extends TestCase {
      * @return A new container with test items
      */
     private Container createTestContainer() {
-        IndexedContainer container = new IndexedContainer(Lists.asList("1",
+        IndexedContainer container = new IndexedContainer(Arrays.asList("1",
                 new String[] { "2", "3", "4" }));
         return container;
     }