diff --git a/tests/test_fingerprint.py b/tests/test_fingerprint.py index 6af73a3..e4f7e79 100644 --- a/tests/test_fingerprint.py +++ b/tests/test_fingerprint.py @@ -41,15 +41,8 @@ egg = Egg(pres=[[presented]],rec=[[recalled]]) -egg.analyze('fingerprint') - def test_fingerprint(): - assert np.allclose(egg.analyze('fingerprint').data.values[0],np.array( - [0.79166667, 0.79166667, 0.5, 0.60416667, 0.5,])) + assert np.allclose(egg.analyze('fingerprint', features=['category']).data.values[0], np.array([0.79166667])) def test_fingerprint_permute_runs(): assert egg.analyze('fingerprint', permute=True, n_perms=3) - -# def test_fingerprint_best(): -# assert np.allclose(egg.analyze('fingerprint', match='best').data.values[0],np.array( -# [0.79166667, 0.60416667, 0.5, 0.5, 0.79166667]))