From fdad13bd10133920bcadfb42fb0c6509f276f60a Mon Sep 17 00:00:00 2001 From: mudler Date: Fri, 12 Aug 2022 15:49:41 +0200 Subject: [PATCH] robot: Run only relevant tests, push to core-* From now on images built from this repo are the c3os core images. c3os core images contains only the base image, framework files and the c3os agent. This also sets up tests accordingly to run only to cover the c3os-agent. --- pkg/machine/bootcmdline_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/machine/bootcmdline_test.go b/pkg/machine/bootcmdline_test.go index 9b28f0a..850f638 100644 --- a/pkg/machine/bootcmdline_test.go +++ b/pkg/machine/bootcmdline_test.go @@ -23,7 +23,7 @@ var _ = Describe("BootCMDLine", func() { b, err := DotToYAML(f.Name()) Expect(err).ToNot(HaveOccurred()) - Expect(string(b)).To(Equal("baz:\n bar: \"\"\nconfig_url: foo bar\n")) + Expect(string(b)).To(Equal("baz:\n bar: \"\"\nconfig_url: foo bar\n"), string(b)) }) }) })