Skip to content
Prev Previous commit
Next Next commit
lint
  • Loading branch information
sreya committed Aug 11, 2024
commit fadde3403934c24a578b5ac99329f175d5d94ffa
4 changes: 2 additions & 2 deletions coderd/database/dbtestutil/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func WithLogger(logger slog.Logger) Option {
}
}

func WithURL(url string) Option {
func WithURL(u string) Option {
return func(o *options) {
o.url = url
o.url = u
}
}

Expand Down
1 change: 0 additions & 1 deletion enterprise/tailnet/pgcoord_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,6 @@ func TestPGCoordinatorDual_FailedHeartbeat(t *testing.T) {
p1.AssertEventuallyHasDERP(p2.ID, 4)
// Make sure peer2 never got an update about peer1 disconnecting.
p2.AssertNeverUpdateKind(p1.ID, proto.CoordinateResponse_PeerUpdate_DISCONNECTED)

}

func TestPGCoordinatorDual_PeerReconnect(t *testing.T) {
Expand Down
Loading