From ab51cab6adaaaf38017762f63347a0257a6b4abc Mon Sep 17 00:00:00 2001 From: gVisor bot Date: Wed, 22 Feb 2023 01:02:26 -0800 Subject: [PATCH] Internal change. PiperOrigin-RevId: 511423100 --- test/runtimes/runner/lib/go_test_dependency_go118.go | 4 ++-- test/runtimes/runner/lib/go_test_dependency_not_go118.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/runtimes/runner/lib/go_test_dependency_go118.go b/test/runtimes/runner/lib/go_test_dependency_go118.go index d430e81c7..4c9577b22 100644 --- a/test/runtimes/runner/lib/go_test_dependency_go118.go +++ b/test/runtimes/runner/lib/go_test_dependency_go118.go @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build go1.18 && go1.1 -// +build go1.18,go1.1 +//go:build go1.18 +// +build go1.18 package lib diff --git a/test/runtimes/runner/lib/go_test_dependency_not_go118.go b/test/runtimes/runner/lib/go_test_dependency_not_go118.go index 8b0b34c72..b8bf1f656 100644 --- a/test/runtimes/runner/lib/go_test_dependency_not_go118.go +++ b/test/runtimes/runner/lib/go_test_dependency_not_go118.go @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build !go1.18 && go1.1 -// +build !go1.18,go1.1 +//go:build !go1.18 +// +build !go1.18 package lib