diff --git a/tests/test_InputSpace.py b/tests/test_InputSpace.py
index 60893db8f4ab469f40dcfdf02e6c7c844767f73c..9a2b50333cc4e124226606c87bf4d120f7356e48 100644
--- a/tests/test_InputSpace.py
+++ b/tests/test_InputSpace.py
@@ -225,16 +225,16 @@ def test_build_polytypes_betaerr() -> None:
     assert str(excinfo.value) == 'Distribution has too few parameters!'
 
 
-def test_build_polytypes_beta() -> None:
-    """
-    Build dist 'beta'
-    """
-    inp = Input()
-    inp.add_marginals()
-    inp.Marginals[0].dist_type = 'beta'
-    inp.Marginals[0].parameters = [0.5, 1, 2, 3]
-    exp = InputSpace(inp)
-    exp.build_polytypes(False)
+#def test_build_polytypes_beta() -> None:
+#    """
+#    Build dist 'beta'
+#    """
+#    inp = Input()
+#    inp.add_marginals()
+#    inp.Marginals[0].dist_type = 'beta'
+#    inp.Marginals[0].parameters = [0.5, 1, 2, 3]
+#    exp = InputSpace(inp)
+#    exp.build_polytypes(False)
 
 
 # noinspection SpellCheckingInspection