From ffb160eb01b7739156359bd9ffa667b1001318f0 Mon Sep 17 00:00:00 2001 From: David Grote Date: Tue, 15 Oct 2024 15:53:04 -0700 Subject: [PATCH] Fix comments in tests/test_multifab.py --- tests/test_multifab.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_multifab.py b/tests/test_multifab.py index becd777a..2abbee53 100644 --- a/tests/test_multifab.py +++ b/tests/test_multifab.py @@ -77,7 +77,7 @@ def test_mfab_numpy(mfab): # Config = sim.extension.Config # Using global indexing - # Set all valid cells + # Set all valid cells (and internal ghost cells) mfab[...] = 42.0 # Set a range of cells. Indices are in Fortran order. @@ -91,8 +91,8 @@ def test_mfab_numpy(mfab): # Get a range of cells # Get the data along the valid cells in the first dimension (gathering data across blocks - # and processors), at the first upper guard cell in the second dimensionn, and cell 16 of - # the third (with 16 being relative to 0 which is the lower end of the full domain). + # and processors), at the first upper guard cell in the second dimensionn, and cell 2 of + # the third (with 2 being relative to 0 which is the lower end of the valid cells of the full domain). # Note that in an MPI context, this is a global operation, so caution is required when # scaling to large numbers of processors. if mfab.n_grow_vect.max > 0: