From da51da6ba787269f7442055d83d4005149fdbef7 Mon Sep 17 00:00:00 2001 From: Kyle D Date: Fri, 22 Apr 2022 15:06:42 -0600 Subject: [PATCH] Update test with new image --- drivers/digitalocean/create_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/digitalocean/create_test.go b/drivers/digitalocean/create_test.go index 277cb2d5..8cf75f8a 100644 --- a/drivers/digitalocean/create_test.go +++ b/drivers/digitalocean/create_test.go @@ -147,7 +147,7 @@ func testInstance(instance *autoscaler.Instance) func(t *testing.T) { if got, want := instance.ID, "3164494"; got != want { t.Errorf("Want droplet ID %v, got %v", want, got) } - if got, want := instance.Image, "docker-18-04"; got != want { + if got, want := instance.Image, "docker-20-04"; got != want { t.Errorf("Want droplet Image %v, got %v", want, got) } if got, want := instance.Name, "example.com"; got != want {