diff options
Diffstat (limited to 't/maint/eol-style.t')
-rw-r--r-- | t/maint/eol-style.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/maint/eol-style.t b/t/maint/eol-style.t index d877a264..2e281dc4 100644 --- a/t/maint/eol-style.t +++ b/t/maint/eol-style.t @@ -26,10 +26,10 @@ for my $file (@files) { waitpid $pid, 0; if ( $? != 0 ) { - ok 1 => "svn propget failed, $file probably not under version control"; + pass "svn propget failed, $file probably not under version control"; } elsif ( $res eq 'native' ) { - ok 1 => "$file svn:eol-style is 'native'"; + pass "$file svn:eol-style is 'native'"; } else { - ok 0 => "$file svn:eol-style is '$res', should be 'native'"; + fail "$file svn:eol-style is '$res', should be 'native'"; } } |