@@ -289,7 +289,7 @@ func TestEndDevicesCount(t *testing.T) {
289289 testWithIdentityServer (t , func (_ * IdentityServer , cc * grpc.ClientConn ) {
290290 reg := ttnpb .NewEndDeviceRegistryClient (cc )
291291
292- t .Run ("Permission denied without credentials" , func (t * testing.T ) { // nolint:paralleltest
292+ t .Run ("Permission denied without credentials" , func (_ * testing.T ) { // nolint:paralleltest
293293 _ , err := reg .Count (ctx , & ttnpb.CountEndDevicesRequest {
294294 ApplicationIds : app1 .GetIds (),
295295 })
@@ -298,7 +298,7 @@ func TestEndDevicesCount(t *testing.T) {
298298 }
299299 })
300300
301- t .Run ("Count with read credentials" , func (t * testing.T ) { // nolint:paralleltest
301+ t .Run ("Count with read credentials" , func (_ * testing.T ) { // nolint:paralleltest
302302 resp , err := reg .Count (ctx , & ttnpb.CountEndDevicesRequest {
303303 ApplicationIds : app1 .GetIds (),
304304 }, readCreds )
@@ -307,7 +307,7 @@ func TestEndDevicesCount(t *testing.T) {
307307 }
308308 })
309309
310- t .Run ("Count after adding a device" , func (t * testing.T ) { // nolint:paralleltest
310+ t .Run ("Count after adding a device" , func (_ * testing.T ) { // nolint:paralleltest
311311 _ , err := reg .Create (ctx , & ttnpb.CreateEndDeviceRequest {
312312 EndDevice : & ttnpb.EndDevice {
313313 Ids : & ttnpb.EndDeviceIdentifiers {
@@ -326,7 +326,7 @@ func TestEndDevicesCount(t *testing.T) {
326326 }
327327 })
328328
329- t .Run ("Count after deleting a device" , func (t * testing.T ) { // nolint:paralleltest
329+ t .Run ("Count after deleting a device" , func (_ * testing.T ) { // nolint:paralleltest
330330 _ , err := reg .Delete (ctx , & ttnpb.EndDeviceIdentifiers {
331331 ApplicationIds : app1 .GetIds (),
332332 DeviceId : "count-test-dev" ,
@@ -341,7 +341,7 @@ func TestEndDevicesCount(t *testing.T) {
341341 }
342342 })
343343
344- t .Run ("Count with updated_since filter" , func (t * testing.T ) { // nolint:paralleltest
344+ t .Run ("Count with updated_since filter" , func (_ * testing.T ) { // nolint:paralleltest
345345 // Filter by 1 hour ago - all devices should match.
346346 resp , err := reg .Count (ctx , & ttnpb.CountEndDevicesRequest {
347347 ApplicationIds : app1 .GetIds (),
0 commit comments