From e0ddd0c66f22d3773a5f7b64146ffcc084f37ee6 Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Wed, 19 Aug 2026 22:58:47 +0200 Subject: [PATCH] STYLE: Use `itk.IT` as IdentifierType in MeshArrayPixelTypeTest `itk.IT` is defined as platform-independent alias for IdentifierType. Follow-up to pull request https://github.com/InsightSoftwareConsortium/ITK/pull/2970 commit 7e59d1bf73729d0b3d5ea97a7d2e082523794d32 "COMP: Use itk.ULL for windows" by Pranjal Sahu, merged on 17 Dec 2021 --- .../Core/Mesh/wrapping/test/itkMeshArrayPixelTypeTest.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Modules/Core/Mesh/wrapping/test/itkMeshArrayPixelTypeTest.py b/Modules/Core/Mesh/wrapping/test/itkMeshArrayPixelTypeTest.py index 74cdae8874e..a6d9d8099ec 100644 --- a/Modules/Core/Mesh/wrapping/test/itkMeshArrayPixelTypeTest.py +++ b/Modules/Core/Mesh/wrapping/test/itkMeshArrayPixelTypeTest.py @@ -27,11 +27,7 @@ mesh = MeshType.New() # Create Vector Container and Store values in it for each Point -# For windows use itk.ULL -if hasattr(itk.VectorContainer, "ULAD"): - IdentifierType = itk.UL -else: - IdentifierType = itk.ULL +IdentifierType = itk.IT v = itk.VectorContainer[IdentifierType, PixelType].New() v.Reserve(NumberOfPoints)