mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
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:
parent
092940b862
commit
632ed6a7c4
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue