fix(test): Fix bad test

We were failing if the test is OK...
This commit is contained in:
2025-06-04 09:24:33 +02:00
parent 9ef961ae7c
commit 9220dc3278

View File

@@ -8,7 +8,7 @@ import (
func TestVersion(t *testing.T) {
// we build on "devel" branch
v := GetVersion()
if strings.Contains(v, "(devel)") {
if !strings.Contains(v, "(devel)") {
t.Errorf("Expected version to be set, got %s", v)
}