Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit a5dda0c

Browse files
committed
off-by-v error in spelling of versions
1 parent 9460bc9 commit a5dda0c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

idk/ingest_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ func TestFeaturebaseVersion(t *testing.T) {
9393
if expectedTag != "" {
9494
// if a tag is set, we're in a tagged pipeline, and the version
9595
// should just be vX.Y or something similar, without a commit
96-
// hash.
97-
if v != expectedTag {
96+
// hash. in that case, the tag passed to us from the environment
97+
// will look like vX.Y, but the version reported by the version
98+
// endpoint is just X.Y. Argh.
99+
if v != expectedTag && ("v"+v) != expectedTag {
98100
t.Fatalf("version %s does not match expected tag %s", v, expectedTag)
99101
}
100102
t.Logf("featurebase version %q matches expectations", expectedTag)

0 commit comments

Comments
 (0)