summaryrefslogtreecommitdiff
path: root/dist/Tie-File/t/31_autodefer.t
diff options
context:
space:
mode:
Diffstat (limited to 'dist/Tie-File/t/31_autodefer.t')
-rw-r--r--dist/Tie-File/t/31_autodefer.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Tie-File/t/31_autodefer.t b/dist/Tie-File/t/31_autodefer.t
index e7af0ad6ed..ea929a4097 100644
--- a/dist/Tie-File/t/31_autodefer.t
+++ b/dist/Tie-File/t/31_autodefer.t
@@ -28,7 +28,7 @@ print $o ? "ok $N\n" : "not ok $N\n";
$N++;
# I am an undocumented feature
-$o->{autodefer_filelen_threshold} = 0;
+$o->{autodefer_filelen_threshhold} = 0;
# Normally autodeferring only works on large files. This disables that.
# (3-22) Deferred storage
@@ -111,7 +111,7 @@ my $BUF = 20;
$o = tie @a, 'Tie::File', $file, autodefer => 0;
die $! unless $o;
# I am an undocumented feature
-$o->{autodefer_filelen_threshold} = 0;
+$o->{autodefer_filelen_threshhold} = 0;
# Normally autodeferring only works on large files. This disables that.
# (57-59) Did the autodefer => 0 option work?