From 6a7274aa3b4f3f7ea445c1e55d1c7994654ba92b Mon Sep 17 00:00:00 2001 From: Brad Chamberlain Date: Thu, 14 Sep 2023 20:37:16 -0700 Subject: [PATCH] Here's a test that escaped me... --- Signed-off-by: Brad Chamberlain --- .../robust/arithmetic/resizing/resizeFromOtherLocale.chpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/distributions/robust/arithmetic/resizing/resizeFromOtherLocale.chpl b/test/distributions/robust/arithmetic/resizing/resizeFromOtherLocale.chpl index cb4e1c0d091a..032812f9fbfc 100644 --- a/test/distributions/robust/arithmetic/resizing/resizeFromOtherLocale.chpl +++ b/test/distributions/robust/arithmetic/resizing/resizeFromOtherLocale.chpl @@ -38,7 +38,7 @@ proc buildSpace(Dom) { return Dom dmapped stencilDist(boundingBox={1..3}); } else if distType == DistType.blockcyclic { - return Dom dmapped BlockCyclic(startIdx=1, blocksize=2); + return Dom dmapped blockCycDist(startIdx=1, blocksize=2); } else { compilerError("Compiling with unknown DistType.");