From b63972b62f2564dad26a922d346108c4f7683953 Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Tue, 31 Aug 2021 11:07:26 -0400 Subject: [PATCH] spell Live Share product name correctly in UI --- client.go | 2 +- client_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index a8a1e3864..fe890f0bf 100644 --- a/client.go +++ b/client.go @@ -69,7 +69,7 @@ func (c *Client) Join(ctx context.Context) (err error) { _, err = c.joinWorkspace(ctx) if err != nil { - return fmt.Errorf("error joining liveshare workspace: %v", err) + return fmt.Errorf("error joining Live Share workspace: %v", err) } return nil diff --git a/client_test.go b/client_test.go index 110c7e3b9..f1591ed51 100644 --- a/client_test.go +++ b/client_test.go @@ -75,7 +75,7 @@ func TestClientJoin(t *testing.T) { livesharetest.WithRelaySAS(connection.RelaySAS), ) if err != nil { - t.Errorf("error creating liveshare server: %v", err) + t.Errorf("error creating Live Share server: %v", err) } defer server.Close() connection.RelayEndpoint = "sb" + strings.TrimPrefix(server.URL(), "https")