diff options
Diffstat (limited to 'dist/Data-Dumper/t/indent.t')
-rw-r--r-- | dist/Data-Dumper/t/indent.t | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/dist/Data-Dumper/t/indent.t b/dist/Data-Dumper/t/indent.t index bcfa251f71..2814f0b215 100644 --- a/dist/Data-Dumper/t/indent.t +++ b/dist/Data-Dumper/t/indent.t @@ -14,7 +14,7 @@ BEGIN { use strict; use Data::Dumper; -use Test::More tests => 10; +use Test::More tests => 9; use lib qw( ./t/lib ); use Testing qw( _dumptostr ); @@ -35,10 +35,6 @@ $dumper->Indent(); $dumpstr{indent_no_arg} = _dumptostr($dumper); $dumper = Data::Dumper->new([$hash]); -$dumper->Indent(undef); -$dumpstr{indent_undef} = _dumptostr($dumper); - -$dumper = Data::Dumper->new([$hash]); $dumper->Indent(0); $dumpstr{indent_0} = _dumptostr($dumper); # $VAR1 = {'foo' => 42}; # no newline @@ -59,8 +55,6 @@ $dumpstr{indent_2} = _dumptostr($dumper); is($dumpstr{noindent}, $dumpstr{indent_no_arg}, "absence of Indent is same as Indent()"); -is($dumpstr{noindent}, $dumpstr{indent_undef}, - "absence of Indent is same as Indent(undef)"); isnt($dumpstr{noindent}, $dumpstr{indent_0}, "absence of Indent is different from Indent(0)"); isnt($dumpstr{indent_0}, $dumpstr{indent_1}, |