trim prefix from server version

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

Signed-off-by: Max Jonas Werner <mail@makk.es>
pull/2748/head
Max Jonas Werner 3 years ago
parent 9af6175302
commit e35da1c890
No known key found for this signature in database
GPG Key ID: EB525E0F02B52140

@ -22,6 +22,7 @@ package main
import ( import (
"context" "context"
"encoding/json" "encoding/json"
"strings"
"testing" "testing"
"github.com/fluxcd/flux2/internal/utils" "github.com/fluxcd/flux2/internal/utils"
@ -38,7 +39,9 @@ func TestCheckPre(t *testing.T) {
t.Fatalf("Error unmarshalling '%s': %v", jsonOutput, err.Error()) 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{ cmd := cmdTestCase{
args: "check --pre", args: "check --pre",

Loading…
Cancel
Save