Skip to content

Commit

Permalink
Update test_uniformity_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rmj3197 authored Mar 11, 2024
1 parent f342ce0 commit df05e26
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_uniformity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ def test_uniformity_test(self):
def test_uniformity_no_rndm_state_dataframe(self):
x_sp = pd.DataFrame(sample_hypersphere(npoints=100, ndim=3))
uniformity_test = PoissonKernelTest(
rho=0.8, random_state=None, num_iter=10, n_jobs=4
).test(x_sp)
rho=0.8, random_state=None, num_iter=10).test(x_sp)
self.assertIsInstance(uniformity_test.u_statistic_un_, (int, float))
self.assertIsInstance(uniformity_test.u_statistic_cv_ ,(int, float))
self.assertIsInstance(uniformity_test.u_statistic_h0_, np.bool_)
Expand Down

0 comments on commit df05e26

Please sign in to comment.