Skip to content

Commit

Permalink
fixed client pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Apr 11, 2023
1 parent f1bb363 commit 6938aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/python/sliderule/sliderule.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def scaleout(desired_nodes, time_to_live, bypass_dns):
Examples
--------
>>> import sliderule
>>> sliderule.scaleout(4, 300)
>>> sliderule.scaleout(4, 300, False)
'''
if desired_nodes is None:
return # nothing needs to be done
Expand Down
2 changes: 1 addition & 1 deletion clients/python/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TestRemote:
def test_check_version(self, domain, organization, desired_nodes):
sliderule.set_url(domain)
sliderule.authenticate(organization)
sliderule.scaleout(desired_nodes, 15)
sliderule.scaleout(desired_nodes, 15, False)
sliderule.check_version(plugins=['icesat2'])

def test_init_badurl(self):
Expand Down

0 comments on commit 6938aef

Please sign in to comment.