Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
simlecode committed Jun 18, 2024
1 parent 9c8238e commit d6bf149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/repo/fsrepo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func TestFSRepoOpen(t *testing.T) {
assert.NoError(t, WriteVersion(repoPath, 99))

_, err := OpenFSRepo(repoPath, 1)
expected := fmt.Sprintf("binary needs update to handle repo version, got 99 expected %d. Update binary to latest release", LatestVersion)
expected := fmt.Sprintf("binary needs update to handle repo version, got 99 expected %d. Update binary to latest release", 1)
assert.EqualError(t, err, expected)
})

Expand Down

0 comments on commit d6bf149

Please sign in to comment.