diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 02:16:45 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-29 02:16:45 +0000 |
commit | 67c6ff9b086d90b2dd777a722b26b05daa648479 (patch) | |
tree | 6939edd05fd96ea920e6b966af7518f0aec15c89 /t | |
parent | 5b8e1cc3698300ff2b19ba271e8221e700deee62 (diff) |
* mercurial: Fix rcs_getctime (thanks, bma)
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"; |