From 702df787966446d37560f1c5249426b4e316da59 Mon Sep 17 00:00:00 2001 From: Matthew McKnight Date: Thu, 24 Mar 2022 22:56:47 -0500 Subject: [PATCH] testing if tox change is all thats needed --- tests/unit/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/utils.py b/tests/unit/utils.py index a7ab7c565..68d0fc33f 100644 --- a/tests/unit/utils.py +++ b/tests/unit/utils.py @@ -253,7 +253,7 @@ def _get_tester_for(self, column_type): return agate.TimeDelta() for instance in agate_helper.DEFAULT_TYPE_TESTER._possible_types: - if isinstance(instance, column_type): + if type(instance) is column_type: return instance raise ValueError(f'no tester for {column_type}')