From 352a4853c3150b88d441e83c969edbfec12a2e93 Mon Sep 17 00:00:00 2001 From: Maxim Pertsov Date: Fri, 12 Apr 2024 12:12:17 -0400 Subject: [PATCH] revive revive lints --- robot/impl/utils.go | 2 -- robot/impltest/local_robot.go | 2 -- 2 files changed, 4 deletions(-) diff --git a/robot/impl/utils.go b/robot/impl/utils.go index 698efc006c6..01bd62ac675 100644 --- a/robot/impl/utils.go +++ b/robot/impl/utils.go @@ -15,8 +15,6 @@ import ( // package. Importing `robotimpl.LocalRobot` for those tests creates a circular import, // and changing those tests to be in the `robotimpl_test` package causes failures because // they test private methods. -// -//nolint:revive func setupLocalRobot( t *testing.T, ctx context.Context, diff --git a/robot/impltest/local_robot.go b/robot/impltest/local_robot.go index 15e45b075f3..f35953d5134 100644 --- a/robot/impltest/local_robot.go +++ b/robot/impltest/local_robot.go @@ -16,8 +16,6 @@ import ( // LocalRobot returns a new robot with parts sourced from the given config, or fails the // test if it cannot. It automatically closes itself after the test and all subtests // complete. -// -//nolint:revive func LocalRobot( t *testing.T, ctx context.Context,