diff options
author | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2012-01-21 15:25:57 -0500 |
---|---|---|
committer | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2012-01-22 10:44:49 -0500 |
commit | b77da0bb3b52ee51e652515e69fc0d986581fd1e (patch) | |
tree | 811c5e76da9ecc3801057081a4c0cbc1864730e6 /t | |
parent | f18160b95d1f9120a5cb656aca84892f811f1972 (diff) | |
download | ikiwiki-b77da0bb3b52ee51e652515e69fc0d986581fd1e.tar ikiwiki-b77da0bb3b52ee51e652515e69fc0d986581fd1e.tar.gz |
Fix a typo in the web commit test.
Diffstat (limited to 't')
-rwxr-xr-x | t/cvs.t | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -7,7 +7,6 @@ use IkiWiki; my $dir; sub _determine_test_plan { - my $cvs=`which cvs`; chomp $cvs; my $cvsps=`which cvsps`; chomp $cvsps; return (skip_all => 'cvs or cvsps not available') @@ -65,9 +64,9 @@ sub test_web_commit { writefile('test1.mdwn', $config{srcdir}, $test1); IkiWiki::rcs_add("test1.mdwn"); IkiWiki::rcs_commit( - files => "test1.mdwn", + file => "test1.mdwn", message => "Added the first page", - token => "moo" + token => "moo", ); my @changes = IkiWiki::rcs_recentchanges(3); |