From 6665373eb2ebeecfbd9703a891f88e7e66cd3c48 Mon Sep 17 00:00:00 2001 From: Jon Ayers Date: Sun, 20 Oct 2024 22:13:44 +0000 Subject: [PATCH] echo -n --- dockerutil/client_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerutil/client_test.go b/dockerutil/client_test.go index 6e1baeb..2f09b0a 100644 --- a/dockerutil/client_test.go +++ b/dockerutil/client_test.go @@ -3,14 +3,15 @@ package dockerutil_test import ( "testing" - "github.com/coder/envbox/dockerutil" "github.com/stretchr/testify/require" + + "github.com/coder/envbox/dockerutil" ) func TestAuthConfigFromString(t *testing.T) { t.Parallel() - creds := `{ "auths": { "docker.registry.test": { "auth": "Zm9vQGJhci5jb206YWJjMTIzCg==" } } }` + creds := `{ "auths": { "docker.registry.test": { "auth": "Zm9vQGJhci5jb206YWJjMTIz" } } }` expectedUsername := "foo@bar.com" expectedPassword := "abc123"