oeqa: drop unnecessary dependency from go runtime tests

The tests do not use scp command, so openssh-scp is not needed.

(From OE-Core rev: 4e10e7848cb10307f133f181b41563c995df032a)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
Peter Marko 2025-11-13 13:28:06 +01:00 committed by Steve Sakoman
parent f5c5d1dd6c
commit 2ab61fcf7d

View File

@ -28,7 +28,6 @@ class GoCompileTest(OERuntimeTestCase):
@OEHasPackage('go')
@OEHasPackage('go-runtime')
@OEHasPackage('go-runtime-dev')
@OEHasPackage('openssh-scp')
def test_go_compile(self):
# Check if go is available
status, output = self.target.run('which go')
@ -49,7 +48,6 @@ class GoCompileTest(OERuntimeTestCase):
@OEHasPackage('go')
@OEHasPackage('go-runtime')
@OEHasPackage('go-runtime-dev')
@OEHasPackage('openssh-scp')
def test_go_module(self):
# Check if go is available
status, output = self.target.run('which go')