Skip to content

Commit

Permalink
adjust test parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
boeddeker committed Apr 17, 2022
1 parent 03dc790 commit c36db0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_wpe.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
class TestWPE(unittest.TestCase):
def setUp(self):
self.T = np.random.randint(100, 120)
self.D = np.random.randint(2, 8)
self.D = np.random.randint(2, 6)
self.K = np.random.randint(3, 5)
self.delay = np.random.randint(0, 2)
self.delay = np.random.randint(1, 3)
self.Y = np.random.normal(size=(self.D, self.T)) \
+ 1j * np.random.normal(size=(self.D, self.T))

Expand Down

0 comments on commit c36db0d

Please sign in to comment.