Skip to content

Commit 140c864

Browse files
committed
NeoEden : rename unused paramater to _
Signed-off-by: Shahriyar Jalayeri <[email protected]>
1 parent 3be2cad commit 140c864

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

neo-eden/tests/eve/vcom_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import (
66
"github.com/bloomberg/go-testgroup"
77
)
88

9-
func (grp *SmokeTests) TestVcomLinkTpmRequestEK(t *testgroup.T) {
9+
func (grp *SmokeTests) TestVcomLinkTpmRequestEK(_ *testgroup.T) {
1010
eveNode.LogTimeInfof("TestVcomLinkTpmRequestEK started")
1111
defer eveNode.LogTimeInfof("TestVcomLinkTpmRequestEK finished")
1212

13-
t.Log("Checking if vcomlink is running on EVE")
13+
eveNode.LogTimeInfof("Checking if vcomlink is running on EVE")
1414
stat, err := eveNode.EveRunCommand("eve exec pillar ss -l --vsock")
1515
if err != nil {
1616
eveNode.LogTimeFatalf("Failed to check if vcomlink is running: %v", err)

neo-eden/tests/eve/vtpm_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
// TestVtpmIsRunningOnEVE checks if the vTPM process is running on the EVE node,
1010
// it does this by checking if the vTPM control socket is open and the vTPM process
1111
// is listening on it.
12-
func (grp *SmokeTests) TestVtpmIsRunningOnEVE(t *testgroup.T) {
12+
func (grp *SmokeTests) TestVtpmIsRunningOnEVE(_ *testgroup.T) {
1313
eveNode.LogTimeInfof("TestVtpmIsRunningOnEVE started")
1414
defer eveNode.LogTimeInfof("TestVtpmIsRunningOnEVE finished")
1515

neo-eden/tests/virtualization/vtpm_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
tk "github.com/lf-edge/eden/pkg/evetestkit"
66
)
77

8-
func (grp *VirtualizationTests) TestVtpmIsStatePreservation(t *testgroup.T) {
8+
func (grp *VirtualizationTests) TestVtpmIsStatePreservation(_ *testgroup.T) {
99
eveNode.LogTimeInfof("TestVtpmIsStatePreservation started")
1010
defer eveNode.LogTimeInfof("TestVtpmIsStatePreservation finished")
1111

0 commit comments

Comments
 (0)