Fixed vector input in tracer serialization test

This commit is contained in:
Svenn Tveit 2024-06-06 09:55:20 +02:00
parent adc36d64a5
commit 61cfcfa523

View File

@ -402,7 +402,7 @@ public:
const std::function<std::array<double,Grid::dimensionworld>(int)> centroids)
{
GenericTracerModelTest result(gridView, eclState, cartMapper, dofMapper, centroids);
result.tracerConcentration_ = {{1.0}, {2.0}, {3.0}};
result.tracerConcentration_ = {{{1.0, 2.0}}, {{3.0, 4.0}}, {{5.0, 6.0}}};
result.wellTracerRate_.insert({{"foo", "bar"}, 4.0});
return result;