Skip to content

Commit c6c3602

Browse files
committed
Reverting update changes
1 parent 893e412 commit c6c3602

16 files changed

+0
-16
lines changed

bigml/tests/create_association_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def i_update_association_name(step, name):
7979
{'name': name})
8080
world.status = resource['code']
8181
eq_(world.status, HTTP_ACCEPTED)
82-
world.api.ok(resource)
8382
world.location = resource['location']
8483
world.association = resource['object']
8584

bigml/tests/create_cluster_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ def make_the_cluster_shared(step):
9393
{'shared': True})
9494
world.status = resource['code']
9595
eq_(world.status, HTTP_ACCEPTED)
96-
world.api.ok(resource)
9796
world.location = resource['location']
9897
world.cluster = resource['object']
9998

bigml/tests/create_configuration_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def i_update_configuration(step, changes):
3939
world.configuration["resource"], changes)
4040
world.status = resource['code']
4141
eq_(world.status, HTTP_ACCEPTED)
42-
world.api.ok(resource)
4342
world.location = resource['location']
4443
world.configuration = resource['object']
4544

bigml/tests/create_correlation_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def i_update_correlation_name(step, name):
4343
{'name': name})
4444
world.status = resource['code']
4545
eq_(world.status, HTTP_ACCEPTED)
46-
world.api.ok(resource)
4746
world.location = resource['location']
4847
world.correlation = resource['object']
4948

bigml/tests/create_dataset_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ def make_the_dataset_public(step):
8989
{'private': False})
9090
world.status = resource['code']
9191
eq_(world.status, HTTP_ACCEPTED)
92-
world.api.ok(resource)
9392
world.location = resource['location']
9493
world.dataset = resource['object']
9594

bigml/tests/create_execution_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def i_update_an_execution(step, param, param_value):
7878
{param: param_value})
7979
world.status = resource['code']
8080
eq_(world.status, HTTP_ACCEPTED)
81-
world.api.ok(resource)
8281
world.location = resource['location']
8382
world.execution = resource['object']
8483

bigml/tests/create_lda_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def i_update_topic_model_name(step, name):
7272
{'name': name})
7373
world.status = resource['code']
7474
eq_(world.status, HTTP_ACCEPTED)
75-
world.api.ok(resource)
7675
world.location = resource['location']
7776
world.topic_model = resource['object']
7877

bigml/tests/create_linear_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def i_update_linear_regression_name(step, name):
7979
{'name': name})
8080
world.status = resource['code']
8181
eq_(world.status, HTTP_ACCEPTED)
82-
world.api.ok(resource)
8382
world.location = resource['location']
8483
world.linear_regression = resource['object']
8584

bigml/tests/create_model_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,6 @@ def i_update_optiml_name(step, name):
410410
{'name': name})
411411
world.status = resource['code']
412412
eq_(world.status, HTTP_ACCEPTED)
413-
world.api.ok(resource)
414413
world.location = resource['location']
415414
world.optiml = resource['object']
416415

bigml/tests/create_pca_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ def i_update_pca_name(step, name):
6565
{'name': name})
6666
world.status = resource['code']
6767
eq_(world.status, HTTP_ACCEPTED)
68-
world.api.ok(resource)
6968
world.location = resource['location']
7069
world.pca = resource['object']
7170

bigml/tests/create_project_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def i_update_project_name_with(step, name=""):
4444
{"name": name})
4545
world.status = resource['code']
4646
eq_(world.status, HTTP_ACCEPTED)
47-
world.api.ok(resource)
4847
world.project = resource['object']
4948

5049

bigml/tests/create_sample_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def i_update_sample_name(step, name):
4444
{'name': name})
4545
world.status = resource['code']
4646
eq_(world.status, HTTP_ACCEPTED)
47-
world.api.ok(resource)
4847
world.location = resource['location']
4948
world.sample = resource['object']
5049

bigml/tests/create_script_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def i_update_a_script(step, param, param_value):
6363
{param: param_value})
6464
world.status = resource['code']
6565
eq_(world.status, HTTP_ACCEPTED)
66-
world.api.ok(resource)
6766
world.location = resource['location']
6867
world.script = resource['object']
6968

bigml/tests/create_source_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ def i_update_source_with(step, data="{}"):
210210
resource = world.api.update_source(world.source.get('resource'), json.loads(data))
211211
world.status = resource['code']
212212
eq_(world.status, HTTP_ACCEPTED)
213-
world.api.ok(resource)
214213

215214

216215
def source_has_args(step, args="{}"):

bigml/tests/create_statistical_tst_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def i_update_tst_name(step, name):
4545
world.statistical_test['resource'], {'name': name})
4646
world.status = resource['code']
4747
eq_(world.status, HTTP_ACCEPTED)
48-
world.api.ok(resource)
4948
world.location = resource['location']
5049
world.statistical_test = resource['object']
5150

bigml/tests/create_time_series_steps.py

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def i_update_time_series_name(step, name):
6666
{'name': name})
6767
world.status = resource['code']
6868
eq_(world.status, HTTP_ACCEPTED)
69-
world.api.ok(resource)
7069
world.location = resource['location']
7170
world.time_series = resource['object']
7271

0 commit comments

Comments
 (0)