summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-01-29 15:56:58 -0500
committerJesse Luehrs <doy@tozt.net>2014-01-29 15:56:58 -0500
commit9b1330ff59fd6b7faefa1fcc798b898359e7b9e9 (patch)
treec57f33e139875d93aa368b405ae3e0252ed56c5d /t
parent3e1b783c60afe860f38b7947888a0bb443694691 (diff)
downloadspreadsheet-parsexlsx-9b1330ff59fd6b7faefa1fcc798b898359e7b9e9.tar.gz
spreadsheet-parsexlsx-9b1330ff59fd6b7faefa1fcc798b898359e7b9e9.zip
return undef to mean 'the default color' (#15)
Diffstat (limited to 't')
-rw-r--r--t/basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/basic.t b/t/basic.t
index f574996..dde23e6 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -85,7 +85,7 @@ for my $file ($filename, do { open my $fh, '<', $filename or die; $fh }) {
ok($format->{Wrap});
is_deeply($format->{Fill}, [0, undef, undef]);
is_deeply($format->{BdrStyle}, [(1) x 4]);
- is_deeply($format->{BdrColor}, [('#000000') x 4]);
+ is_deeply($format->{BdrColor}, [(undef) x 4]);
is_deeply($format->{BdrDiag}, [0, 0, undef]);
my $font = $format->{Font};