diff --git a/test/test_data_handling/test_bootstraps.py b/test/test_data_handling/test_bootstraps.py
index 9dd23893ef903bfbd0595a482dceb32724c3b437..68789ff660f8dba5409578f537977f82a3ef3244 100644
--- a/test/test_data_handling/test_bootstraps.py
+++ b/test/test_data_handling/test_bootstraps.py
@@ -56,8 +56,8 @@ class TestBootstraps:
         data = np.array([[1, 2, 3], [1, 2, 3], [1, 2, 3], [1, 2, 3]])
         res = boot_no_init.shuffle_single_variable(data, chunks=(2, 3)).compute()
         assert res.shape == data.shape
-        assert res.max() == data.max()
-        assert res.min() == data.min()
+        assert res.max() <= data.max()
+        assert res.min() >= data.min()
         assert set(np.unique(res)).issubset({1, 2, 3})
 
     def test_create_shuffled_data(self):