robot: Delete duplicate test suite registration (#1091)

Signed-off-by: mudler <mudler@c3os.io>
This commit is contained in:
Ettore Di Giacinto 2023-03-10 11:10:03 +01:00 committed by Itxaka
parent e57ef905a4
commit 6bc750130c
2 changed files with 3 additions and 8 deletions

View File

@ -16,7 +16,7 @@ import (
"github.com/nxadm/tail"
)
// setup needs edgevpn and k3s installed locally (both k3s and k3s-agent systemd services).
// Run starts the agent provider emitting the bootstrap event.
func Run(opts ...Option) error {
o := &Options{}
if err := o.Apply(opts...); err != nil {

View File

@ -2,10 +2,10 @@ package agent
import (
"context"
"os"
"github.com/kairos-io/kairos/pkg/config"
"gopkg.in/yaml.v3"
"os"
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
@ -47,8 +47,3 @@ var _ = Describe("prepareConfiguration", func() {
Expect(os.IsNotExist(err))
})
})
func TestPrepareConfiguration(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "prepareConfiguration Suite")
}