Skip to content

Commit

Permalink
Removed print statement from test. Whoopsie!
Browse files Browse the repository at this point in the history
  • Loading branch information
vene committed Jun 14, 2011
1 parent 1f99835 commit c0187b9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scikits/learn/decomposition/tests/test_sparse_pca.py
Expand Up @@ -36,7 +36,6 @@ def test_correct_shapes():

def test_fit_transform():
Y, _, _ = generate_toy_data(3, 10, (8, 8)) # wide array
print Y.shape
U1 = SparsePCA(n_components=3).fit_transform(Y)
U2 = SparsePCA(n_components=3).fit(Y).transform(Y, alpha=0.01)
assert_array_almost_equal(U1, U2)
Expand Down

0 comments on commit c0187b9

Please sign in to comment.