Skip to content

Commit

Permalink
TST: Trying to assuage the OS 10.4 build-bot.
Browse files Browse the repository at this point in the history
  • Loading branch information
arokem committed Jun 6, 2012
1 parent 239ecd9 commit 05b8e09
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nitime/analysis/tests/test_coherence.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ def test_SparseCoherenceAnalyzer():
C2 = nta.CoherenceAnalyzer(T)

# Coherence symmetry:
npt.assert_equal(np.abs(C1.coherence[0, 1]), np.abs(C1.coherence[1, 0]))
npt.assert_equal(np.abs(C1.coherency[0, 1]), np.abs(C1.coherency[1, 0]))
npt.assert_almost_equal(np.abs(C1.coherence[0, 1]),
np.abs(C1.coherence[1, 0]))
npt.assert_almost_equal(np.abs(C1.coherency[0, 1]),
np.abs(C1.coherency[1, 0]))

# Make sure you get the same answers as you would from the standard
# CoherenceAnalyzer:
Expand Down

0 comments on commit 05b8e09

Please sign in to comment.