From 3fd29d214a105c25c2db607ff39edaad36b3004b Mon Sep 17 00:00:00 2001 From: Tim Heckman Date: Mon, 11 Oct 2021 22:52:47 -0700 Subject: [PATCH] Fix test after merging #332 (2f47dfc62321b) In between raising #332 and merging it, there were changes to the master branch that resulted in the tests in this PR breaking after the merge. In hindsight, this branch should have been rebased against master before merging the PR. --- client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_test.go b/client_test.go index 2ce7f880..d3f0f73d 100644 --- a/client_test.go +++ b/client_test.go @@ -455,7 +455,7 @@ func TestClient_LastAPIRequest(t *testing.T) { }) t.Run("integration", func(t *testing.T) { - const requestBody = `{"user":{"id":"1","type":"","name":"","summary":"","email":"foo@bar.com","contact_methods":null,"notification_rules":null,"Teams":null}}` + const requestBody = `{"user":{"id":"1","name":"","summary":"","email":"foo@bar.com","contact_methods":null,"notification_rules":null,"Teams":null}}` setup() defer teardown()