trim prefix from server version

It's not part of the `flux check` output.

Signed-off-by: Max Jonas Werner <mail@makk.es>
This commit is contained in:
Max Jonas Werner 2022-05-18 17:08:50 +02:00
parent 9af6175302
commit e35da1c890
No known key found for this signature in database
GPG key ID: EB525E0F02B52140

View file

@ -22,6 +22,7 @@ package main
import (
"context"
"encoding/json"
"strings"
"testing"
"github.com/fluxcd/flux2/internal/utils"
@ -38,7 +39,9 @@ func TestCheckPre(t *testing.T) {
t.Fatalf("Error unmarshalling '%s': %v", jsonOutput, err.Error())
}
serverGitVersion := versions["serverVersion"].(map[string]interface{})["gitVersion"].(string)
serverGitVersion := strings.TrimPrefix(
versions["serverVersion"].(map[string]interface{})["gitVersion"].(string),
"v")
cmd := cmdTestCase{
args: "check --pre",