Skip to content

Commit

Permalink
fix compilation of atlas_test_array for GridTools
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrdar committed Mar 10, 2024
1 parent 400554e commit 89101f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/array/test_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ CASE("test_array_shape") {

EXPECT_EQ(ds->size(), 6);
EXPECT_EQ(ds->rank(), 2);
EXPECT_EQ(ds->stride(0), gt_hv.stride(0));
EXPECT_EQ(ds->stride(1), gt_hv.stride(1));
EXPECT_EQ(ds->stride(0), gt_hv.storage_info().stride<0>());
EXPECT_EQ(ds->stride(1), gt_hv.storage_info().stride<1>());
EXPECT(ds->contiguous());
delete ds;
}
Expand Down

0 comments on commit 89101f3

Please sign in to comment.