Skip to content

Commit

Permalink
Fix dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardSchmiester committed Sep 19, 2024
1 parent d783558 commit ab8fd20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_neg_log_likelihood.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ def setUp(self):
self.timevec = np.array([0, 24, 48])
self.num_replicates = 2
self.model = 'expo'
self.num_timepoints_high = 1
self.num_conc_high_noise = 1
self.num_timepoints_high = np.array(1)
self.num_conc_high_noise = np.array(1)
self.num_noise_high = 1
self.num_noise_low = 1

Expand Down

0 comments on commit ab8fd20

Please sign in to comment.