ManagingContentRootsTest: remove useless casting to project model implementation

GitOrigin-RevId: cfb69cd5c3f5e8af7b2d3af8473214fd7489c3e1
This commit is contained in:
Leonid Shalupov
2019-07-17 19:41:03 +02:00
committed by intellij-monorepo-bot
parent 6b761e5ef9
commit 123db48398

View File

@@ -92,7 +92,7 @@ public class ManagingContentRootsTest extends JavaProjectTestCase {
ModifiableRootModel m = getRootManager().getModifiableModel();
ContentEntry e = findContentEntry(dir.getUrl(), m);
assertSame(m, ((ContentEntryImpl)e).getRootModel());
assertSame(m, e.getRootModel());
m.dispose();
});
}