Skip to content

Commit

Permalink
modify test label
Browse files Browse the repository at this point in the history
Updates #723
  • Loading branch information
shawnlaffan committed Apr 5, 2019
1 parent 724ca25 commit 55eba16
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/11-BaseData.t
Expand Up @@ -453,17 +453,17 @@ sub test_coarsen_cell_sizes {
'no axes' => [],
'too many axes' => [[2,2,2]],
'insufficient axes' => [[2]],
'bung axes' => [[2,2], [1.5,1]],
#'unchanged axes' => [1,1], # no - user can just get a clone
'bung axis origins' => [[2,2], [1.5,1]],
#'unchanged axes' => [1,1], # no - user can just get a clone the hard way
);
foreach my $text (sort keys %die_calls) {
my $cell_sizes = $die_calls{$text}[0];
my $cell_origins = $die_calls{$text}[1];

dies_ok (
sub {$bd1->clone_with_coarser_cell_sizes (
cell_sizes => $cell_sizes,
cell_origins => $cell_origins,
cell_sizes => $cell_sizes,
cell_origins => $cell_origins,
)},
"dies on $text",
);
Expand Down

0 comments on commit 55eba16

Please sign in to comment.