From 983ac712d8e87cf5018d643e077d341c4900cc24 Mon Sep 17 00:00:00 2001 From: Jiri Luzny Date: Tue, 5 Dec 2023 19:04:01 +0100 Subject: [PATCH] Fixed typo in an assert message. --- example/example_live_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example_live_test.go b/example/example_live_test.go index 85fe40d..e88611b 100644 --- a/example/example_live_test.go +++ b/example/example_live_test.go @@ -85,7 +85,7 @@ func (s *MySuite) TestLightService() { newState := getEntityState(s, entityId) assert.NotEqual(c, initState, newState) assert.True(c, s.suiteCtx["entityCallbackInvoked"].(bool)) - }, 10*time.Second, 1*time.Second, "State of light entity did not change or callback was invoked") + }, 10*time.Second, 1*time.Second, "State of light entity did not change or callback was not invoked") } else { s.T().Skip("No light entity id provided") }