From 9a036f214fbcddfc7dacd1c6c8f06106388d52e6 Mon Sep 17 00:00:00 2001 From: arnested <190005+arnested@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:09:04 +0000 Subject: [PATCH] Test Go unstable version 1.27rc2 See the draft release notes: https://tip.golang.org/doc/go1.27. --- go.mod | 2 +- main_test.go | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index d39611d..9f42bf4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module ldddns.arnested.dk -go 1.26.5 +go 1.27rc2 require ( github.com/Microsoft/go-winio v0.6.2 // indirect diff --git a/main_test.go b/main_test.go index 64db81f..973f569 100644 --- a/main_test.go +++ b/main_test.go @@ -9,11 +9,9 @@ import ( func createTestContainer(labels map[string]string) internalContainer.Container { return internalContainer.Container{ - InspectResponse: container.InspectResponse{ - ID: "test-container", - Config: &container.Config{ - Labels: labels, - }, + ID: "test-container", + Config: &container.Config{ + Labels: labels, }, } }