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 b957f3e commit cc43c1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_uniformity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def test_uniformity_no_rndm_state_dataframe(self):
self.assertIsInstance(uniformity_test.v_statistic_h0_, np.bool_)

def test_uniformity_rndm_state_dataframe_dim1(self):
x_sp = pd.DataFrame(sample_hypersphere(npoints=100, ndim=1))
x_sp = sample_hypersphere(npoints=100, ndim=1)
uniformity_test = PoissonKernelTest(
rho=0.8, random_state=42, num_iter=10, n_jobs=4
rho=0.8, random_state=42, num_iter=10
).test(x_sp)
self.assertIsInstance(uniformity_test.u_statistic_un_, (int, float))
self.assertIsInstance(uniformity_test.u_statistic_cv_ ,(int, float))
Expand Down

0 comments on commit cc43c1c

Please sign in to comment.