Skip to content

Commit 6dda5e4

Browse files
committed
Fixing tests
1 parent c8bc292 commit 6dda5e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bigml/tests/compare_predictions_steps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def i_retrieve_a_list_of_remote_models(step, tag):
5252
"""Step: I retrieve a list of remote models tagged with <tag>"""
5353
world.list_of_models = [ \
5454
world.api.get_model(model['resource']) for model in
55-
world.api.list_models(query_string="project=%s;tags__in=%s" % \
55+
world.api.list_models(query_string="project=%s&tags__in=%s" % \
5656
(world.project_id, tag))['objects']]
5757

5858

@@ -63,7 +63,7 @@ def i_retrieve_a_list_of_remote_logistic_regressions(step, tag):
6363
world.list_of_models = [ \
6464
world.api.get_logistic_regression(model['resource']) for model in
6565
world.api.list_logistic_regressions( \
66-
query_string="project=%s;tags__in=%s" % \
66+
query_string="project=%s&tags__in=%s" % \
6767
(world.project_id, tag))['objects']]
6868

6969

@@ -72,7 +72,7 @@ def i_retrieve_a_list_of_remote_linear_regressions(step, tag):
7272
world.list_of_models = [ \
7373
world.api.get_linear_regression(model['resource']) for model in
7474
world.api.list_linear_regressions( \
75-
query_string="project=%s;tags__in=%s" % \
75+
query_string="project=%s&tags__in=%s" % \
7676
(world.project_id, tag))['objects']]
7777

7878

0 commit comments

Comments
 (0)