diff --git a/src/Atypical.VirtualFileSystem.DemoCli/Commands/DemonstrateVFS.cs b/src/Atypical.VirtualFileSystem.DemoCli/Commands/DemonstrateVFS.cs index e167e72..1b34469 100644 --- a/src/Atypical.VirtualFileSystem.DemoCli/Commands/DemonstrateVFS.cs +++ b/src/Atypical.VirtualFileSystem.DemoCli/Commands/DemonstrateVFS.cs @@ -62,9 +62,8 @@ public override int Execute(CommandContext context, CancellationToken cancellati () => vfs.MoveDirectory(new VFSDirectoryPath("/heroes"), new VFSDirectoryPath("/avengers"))); // Rename a directory - // TODO: fix rename directory - // ProcessStep(vfs, "RENAME DIRECTORY", - // () => vfs.RenameDirectory(new VFSDirectoryPath("/avengers"), new VFSDirectoryPath("/heroes"))); + ProcessStep(vfs, "RENAME DIRECTORY", + () => vfs.RenameDirectory(new VFSDirectoryPath("/avengers"), "heroes")); return 0; }