assertArrayEquals(c3.getBytes(), ch.toArray());
// 2. Shall supply working copy even if no local file is there
f1.delete();
assertFalse(f1.exists());
df = repo.getFileNode(f1.getName());
df.workingCopy(ch = new ByteArrayChannel());
assertArrayEquals(c2.getBytes(), ch.toArray());
//
// 3. Shall extract revision of the file that corresponds actual parents (from dirstate) not the TIP as it was
exec.run("hg", "update", "-r", "0");
assertEquals(0, exec.getExitValue());