fix: comment punctuation and shutdown of ticker

This commit is contained in:
djkazic
2025-05-21 11:28:34 -04:00
parent 7233c25bce
commit eab9d755b6
4 changed files with 28 additions and 18 deletions

View File

@@ -186,7 +186,8 @@ func setupAperture(t *testing.T) {
}
aperture := NewAperture(apertureCfg)
errChan := make(chan error)
require.NoError(t, aperture.Start(errChan))
shutdown := make(chan struct{})
require.NoError(t, aperture.Start(errChan, shutdown))
// Any error while starting?
select {