From 60b851ddfa43b0f55935005acc4835c378a6bbd7 Mon Sep 17 00:00:00 2001 From: Jiri Luzny Date: Sun, 12 Nov 2023 21:37:13 +0100 Subject: [PATCH] aligned module name --- example/example_live_test.go | 3 +-- example/go.mod | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/example/example_live_test.go b/example/example_live_test.go index d2bbaac..99d0f0e 100644 --- a/example/example_live_test.go +++ b/example/example_live_test.go @@ -1,4 +1,4 @@ -package example +package main import ( "log/slog" @@ -74,7 +74,6 @@ func (s *MySuite) TestLightService() { s.app.GetService().Light.Toggle(entityId) time.Sleep(1 * time.Second) // wait for state to update - // <-time.After(1 * time.Second) newState, err := s.app.GetState().Get(entityId) if err != nil { diff --git a/example/go.mod b/example/go.mod index 95813bf..3121021 100644 --- a/example/go.mod +++ b/example/go.mod @@ -1,4 +1,4 @@ -module example +module main go 1.21.0