Skip to content

Commit 0cbe474

Browse files
Simplify tests for Github issue #535.
1 parent 9315b66 commit 0cbe474

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

tests/test_bql.py

+6-10
Original file line numberDiff line numberDiff line change
@@ -1023,18 +1023,14 @@ def test_simulate_columns_subquery():
10231023
' order by name asc limit 2) from p1 limit 10')
10241024

10251025
@pytest.mark.xfail(strict=True, reason='Github issue #535')
1026-
def test_simulate_columns_subquery_broken0():
1027-
assert bql2sql('simulate weight, t1.(estimate * from columns of p1'
1028-
' where probability of (mutual information with age < 1) > 0.8)'
1029-
' from p1 limit 10') == \
1030-
'SELECT * FROM "bayesdb_temp_0";'
1026+
def test_estimate_variables_estprob_broken0():
1027+
bql2sql('estimate * from variables of p1'
1028+
' where probability of (mutual information with age < 1) > 0.8')
10311029

10321030
@pytest.mark.xfail(strict=True, reason='Github issue #535')
1033-
def test_simulate_columns_subquery_broken1():
1034-
assert bql2sql('simulate weight, t1.(estimate * from columns of p1'
1035-
' order by probability of (mutual information with age < 1))'
1036-
' from p1 limit 10') == \
1037-
'SELECT * FROM "bayesdb_temp_0";'
1031+
def test_estimate_variables_estprob_broken1():
1032+
bql2sql('estimate * from variables of p1'
1033+
' order by probability of (mutual information with age < 1)')
10381034

10391035
def test_simulate_columns_all():
10401036
with pytest.raises(parse.BQLParseError):

0 commit comments

Comments
 (0)