From 5aa7e07afbb4e9003c8441f1cf7fc838744ed5c9 Mon Sep 17 00:00:00 2001 From: Hasty Granbery Date: Tue, 3 Sep 2024 15:20:20 -0700 Subject: [PATCH] Fix no longer needed params to test plan header --- testplan/header.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/testplan/header.go b/testplan/header.go index 91307150..78c7c033 100644 --- a/testplan/header.go +++ b/testplan/header.go @@ -3,7 +3,6 @@ package testplan import ( "fmt" "strings" - "time" "github.com/project-chip/alchemy/matter" ) @@ -48,11 +47,7 @@ This section covers the {clustername} Cluster Test Plan related PICS items that func renderHeader(cluster *matter.Cluster, b *strings.Builder) (err error) { - now := time.Now() - longDate := now.Format("02-Jan-2006") - shortDate := now.Format("2006-01-02") - header := fmt.Sprintf(header, cluster.Name, longDate, cluster.PICS, cluster.Name, shortDate) + header := fmt.Sprintf(header, cluster.Name, cluster.PICS, cluster.Name) _, err = b.WriteString(header) - return }