Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
simlecode committed Feb 29, 2024
1 parent d78f517 commit bd05275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/beacon/drand_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ func TestMaxBeaconRoundForEpoch(t *testing.T) {

func TestQuicknetIsChained(t *testing.T) {
tf.UnitTest(t)
todayTs := uint64(1652222222)
todayTS := uint64(1652222222)
drandCfg := config.DrandConfigs[config.DrandQuicknet]
db, err := NewDrandBeacon(todayTs, config.NewDefaultConfig().NetworkParams.BlockDelay, drandCfg)
db, err := NewDrandBeacon(todayTS, config.NewDefaultConfig().NetworkParams.BlockDelay, drandCfg)
assert.NoError(t, err)
assert.False(t, db.IsChained())
}

0 comments on commit bd05275

Please sign in to comment.