diff --git a/e2e-tests/pass/pair_test.go b/e2e-tests/pass/pair_test.go index d68c187..f8c4811 100644 --- a/e2e-tests/pass/pair_test.go +++ b/e2e-tests/pass/pair_test.go @@ -23,15 +23,15 @@ func TestDelayedCommunication(t *testing.T) { t.Fatalf("Failed to configure browser extension: %v", err) } - t.Run("BE sleeps before sending message", func(t *testing.T) { + t.Run("BE sleeps before sending a message", func(t *testing.T) { deviceID := getDeviceID() testPairing(t, deviceID, resp, time.Minute, 0) }) - t.Run("Mobile sleeps before sending message", func(t *testing.T) { + t.Run("Mobile sleeps before sending a message", func(t *testing.T) { deviceID := getDeviceID() testPairing(t, deviceID, resp, 0, time.Minute) }) - t.Run("Both sleep before sending message", func(t *testing.T) { + t.Run("Both sleep before sending a message", func(t *testing.T) { deviceID := getDeviceID() testPairing(t, deviceID, resp, time.Minute, time.Minute) })