This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit ab793837eb2a1eebf0a4774a630e64ad95cff561 Author: Martin Olšiak <56640450+realmarti...@users.noreply.github.com> AuthorDate: Thu Apr 13 13:15:28 2023 +0200 Update keystore_test.go Fixed formatting --- pkg/util/jvm/keystore_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/jvm/keystore_test.go b/pkg/util/jvm/keystore_test.go index 1338f6260..ffeed9621 100644 --- a/pkg/util/jvm/keystore_test.go +++ b/pkg/util/jvm/keystore_test.go @@ -34,7 +34,7 @@ func TestGenerateKeystore(t *testing.T) { err := GenerateKeystore(ctx, "", "/tmp/keystore", NewKeystorePassword(), data) assert.Nil(t, err) - // Non-nil data + // Non-Nil Data data = [][]byte{{0}, {1}} err = GenerateKeystore(ctx, "", "/tmp/keystore", NewKeystorePassword(), data) assert.NotNil(t, err)