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

Fix version warning parse logic #172

Merged
merged 3 commits into from
Nov 3, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! Fix version warning parse logic
  • Loading branch information
cmoog committed Nov 3, 2020
commit 8928d8107083d75a829d63cfbdb11882dec1ef95
2 changes: 1 addition & 1 deletion internal/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ func TestVersion(t *testing.T) {
assert.True(t, "versions do not match", !match)

Version="1.12.2+cli.rc1"
match = VersionsMatch("v1.12.2")
match = VersionsMatch("v1.12.9")
assert.True(t, "versions do match", match)
}