Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joerger committed Oct 16, 2024
1 parent 99c0604 commit f066a2d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lib/auth/grpcserver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,6 @@ func TestMFADeviceManagement_SSO(t *testing.T) {
RPID: "localhost",
},
})
const webOrigin = "https://localhost" // matches RPID above
require.NoError(t, err)
_, err = authServer.UpsertAuthPreference(ctx, authPref)
require.NoError(t, err)
Expand Down
2 changes: 1 addition & 1 deletion lib/services/local/users_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ func TestIdentityService_GetMFADevices_SSO(t *testing.T) {
},
})
require.NoError(t, err)
assert.Equal(t, devs, []*types.MFADevice{expectSSODevice})
assert.Equal(t, []*types.MFADevice{expectSSODevice}, devs)
})
}
}
Expand Down

0 comments on commit f066a2d

Please sign in to comment.