diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/mercurial.t | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/t/mercurial.t b/t/mercurial.t index 7d6c2eacc..da4e2beaa 100755 --- a/t/mercurial.t +++ b/t/mercurial.t @@ -56,10 +56,7 @@ is($changes[0]{pages}[0]{"page"}, "test2.mdwn"); is($changes[1]{pages}[0]{"page"}, "test1.mdwn"); -TODO: { - local $TODO = "hg behavior change seems to have broken this"; - my $ctime = IkiWiki::rcs_getctime("test2.mdwn"); - is($ctime, 0); -} +my $ctime = IkiWiki::rcs_getctime("test2.mdwn"); +is($ctime, 0); system "rm -rf $dir"; |