From 376ae3a1c4047d654cec3dc6e5f9d40e5d1890d4 Mon Sep 17 00:00:00 2001 From: Roy Smart Date: Sun, 11 Feb 2024 13:39:50 -0700 Subject: [PATCH] Improved test coverage --- named_arrays/_vectors/vector_named_array_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/named_arrays/_vectors/vector_named_array_functions.py b/named_arrays/_vectors/vector_named_array_functions.py index 56279ae6..80ae5898 100644 --- a/named_arrays/_vectors/vector_named_array_functions.py +++ b/named_arrays/_vectors/vector_named_array_functions.py @@ -288,7 +288,7 @@ def pcolormesh( try: prototype = vectors._prototype(*XY) XY = tuple(vectors._normalize(arg, prototype) for arg in XY) - except na.VectorTypeError: + except na.VectorTypeError: # pragma: nocover return NotImplemented if len(XY) != 1: # pragma: nocover