From: Amitai Schlair Date: Sat, 21 Jan 2012 20:25:57 +0000 (-0500) Subject: Fix a typo in the web commit test. X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/b77da0bb3b52ee51e652515e69fc0d986581fd1e?hp=f18160b95d1f9120a5cb656aca84892f811f1972 Fix a typo in the web commit test. --- 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);