Skip to content

Commit

Permalink
image name had colons instead of dots (#12000)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 00860592726b62d01b7c0d6514acd8ad100913f5
  • Loading branch information
weydaej authored and Descartes Labs Build committed Jul 13, 2023
1 parent c64ba17 commit 0d8cef5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions descarteslabs/core/compute/tests/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test():
@unittest.skipIf(sys.version_info >= (3, 11), "Python >= 3.11 not supported")
def test_create_function(self):
params = {
"image": "python3:8",
"image": "python3.8",
"cpus": 1,
"memory": 8 * 1024,
"maximum_concurrency": 1,
Expand Down Expand Up @@ -154,7 +154,7 @@ def test_compute_fn(a, b):
@unittest.skipIf(sys.version_info >= (3, 11), "Python >= 3.11 not supported")
def test_call_creates_function(self):
params = {
"image": "python3:8",
"image": "python3.8",
"cpus": 1,
"memory": 8 * 1024,
"maximum_concurrency": 1,
Expand Down

0 comments on commit 0d8cef5

Please sign in to comment.