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
fixup! Fix version warning parse logic
  • Loading branch information
cmoog committed Nov 3, 2020
commit 80a95f6cc4aa563d05719d82377a27cd34225461
2 changes: 1 addition & 1 deletion internal/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func TestVersion(t *testing.T) {
match = VersionsMatch("v2.15.2")
assert.True(t, "versions do not match", !match)

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