testdata changed according to inference from type cast

This commit is contained in:
anna
2012-12-18 20:26:32 +01:00
parent 21ac28f80d
commit 70ab126c8f
@@ -40,7 +40,7 @@ public class TypeInferenceTest extends Resolve15TestCase {
assertTrue(type instanceof PsiClassType);
PsiType[] paramTypes = ((PsiClassType)type).getParameters();
assertEquals(1, paramTypes.length);
assertEquals(CommonClassNames.JAVA_LANG_OBJECT, paramTypes[0].getCanonicalText());
assertEquals(CommonClassNames.JAVA_LANG_STRING, paramTypes[0].getCanonicalText());
}
public void testInferWithBounds () throws Exception {