Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aganesh-suse committed Mar 27, 2024
1 parent 37682cd commit c8c4ca8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/testcase/secretsencrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ func logEncryptionFileContents(ips []string, product string) error {
return shared.ReturnLogError(fmt.Sprintf("Error cat of %s", configFile))
}
currentTime := time.Now()
Expect(configStdOut).To(ContainSubstring(fmt.Sprintf("aescbckey-%s", currentTime.Format("2006-01-02"))))
Expect(configStdOut).To(ContainSubstring(fmt.Sprintf("aescbckey-%s",
currentTime.Format("2006-01-02"))))
_, errState := shared.RunCommandOnNode(cmdShowState, ip)
if errState != nil {
return shared.ReturnLogError(fmt.Sprintf("Error cat of %s", stateFile))
Expand Down

0 comments on commit c8c4ca8

Please sign in to comment.