File tree 1 file changed +6
-10
lines changed
1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -1023,18 +1023,14 @@ def test_simulate_columns_subquery():
1023
1023
' order by name asc limit 2) from p1 limit 10' )
1024
1024
1025
1025
@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' )
1031
1029
1032
1030
@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)' )
1038
1034
1039
1035
def test_simulate_columns_all ():
1040
1036
with pytest .raises (parse .BQLParseError ):
You can’t perform that action at this time.
0 commit comments