From 5f2de778f41b1b14904c14328a78023007f90cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thi=C3=A9baud=20Weksteen?= Date: Thu, 25 Jun 2020 21:23:50 +0200 Subject: [PATCH] Remove duplicate Helper call The testRustContext function is used to prepare the environment for the unit tests. As such, it is marked as a Helper function. Remove a second superfluous call within its definition. Test: m nothing Change-Id: I37ea9a584b33498794c1cac828a7557d4bea8d7c --- rust/rust_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/rust/rust_test.go b/rust/rust_test.go index 703aaed29..280c22a7e 100644 --- a/rust/rust_test.go +++ b/rust/rust_test.go @@ -93,7 +93,6 @@ func testRustContext(t *testing.T, bp string, coverage bool) *android.TestContex config.TestProductVariables.NativeCoveragePaths = []string{"*"} } - t.Helper() ctx := CreateTestContext() ctx.Register(config)