aboutsummaryrefslogtreecommitdiff
path: root/t/cvs.t
diff options
context:
space:
mode:
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2012-01-21 15:25:57 -0500
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2012-01-22 10:44:49 -0500
commitb77da0bb3b52ee51e652515e69fc0d986581fd1e (patch)
tree811c5e76da9ecc3801057081a4c0cbc1864730e6 /t/cvs.t
parentf18160b95d1f9120a5cb656aca84892f811f1972 (diff)
downloadikiwiki-b77da0bb3b52ee51e652515e69fc0d986581fd1e.tar
ikiwiki-b77da0bb3b52ee51e652515e69fc0d986581fd1e.tar.gz
Fix a typo in the web commit test.
Diffstat (limited to 't/cvs.t')
-rwxr-xr-xt/cvs.t5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/cvs.t b/t/cvs.t
index fdd26dbc8..c4e9eb276 100755
--- a/t/cvs.t
+++ b/t/cvs.t
@@ -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);