Fix lint issue in Orbit test (#5929)

Fixes issue introduced by #5894.

This was missed due to distraction from other (typical) CI failures on dependabot PRs.
This commit is contained in:
Zach Wasserman 2022-05-26 16:44:49 -07:00 committed by GitHub
parent 092940b862
commit 632ed6a7c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ func assertFileExists(t *testing.T, path string) {
assert.True(t, st.Mode().IsRegular(), "should be regular file: %s", path)
}
func assertVersion(t *testing.T, expected int, versionFunc func() (int, error)) {
func assertVersion(t *testing.T, expected int64, versionFunc func() (int64, error)) {
t.Helper()
actual, err := versionFunc()
require.NoError(t, err)