Skip to content

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
fra-pcmgf committed Aug 6, 2024
1 parent 7697a6f commit f57bb0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_dyson_equalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
import numpy as np

from dyson_equalizer.dyson_equalizer import DysonEqualizer
from dyson_equalizer.examples import generate_X_with_correlated_noise
from dyson_equalizer.examples import generate_Y_with_correlated_noise


class DysonEqualizerTestCase(unittest.TestCase):
def test_fig_2(self):
Y = generate_X_with_correlated_noise()
Y = generate_Y_with_correlated_noise()
de = DysonEqualizer(Y)
de.compute()

self.assertEqual(20, de.r_hat)

def test_transpose(self):
Y = generate_X_with_correlated_noise()
Y = generate_Y_with_correlated_noise()

de = DysonEqualizer(Y)
de.compute()
Expand Down

0 comments on commit f57bb0e

Please sign in to comment.