Skip to content

Commit

Permalink
distinguish bool from function
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandawsonuk committed Jul 22, 2019
1 parent 0cbda70 commit 123ae21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/scripts/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def do_clusterwide_seldon_helm(request=None):
def do_create_docker_repo(request=None):
create_docker_repo(request)

def do_seldon_images(request=None,create_docker_repo=True):
if create_docker_repo:
def do_seldon_images(request=None,create_repo=True):
if create_repo:
create_docker_repo(request)
port_forward_docker_repo(request)
build_java_images()
Expand Down

0 comments on commit 123ae21

Please sign in to comment.