diff --git a/tests/test_cli.py b/tests/test_cli.py index bef712f9..3b6754b5 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -701,14 +701,14 @@ def test_empty(self): residx2conlab= cli._parse_consensus_option(None, None, self.geom.top, None, ) - assert _pandasunique(residx2conlab)[0] is None + assert _pandasunique(_np.array(residx2conlab))[0] is None def test_empty_w_return(self): residx2conlab, lblr = cli._parse_consensus_option(None, None, self.geom.top, None, return_Labeler=True) assert lblr is None - assert _pandasunique(residx2conlab)[0] is None + assert _pandasunique(_np.array(residx2conlab))[0] is None def test_with_GPCR(self): fragments = mdcfragments.get_fragments(self.geom.top)