diff --git a/server/integrationtests/sharing_test.go b/server/integrationtests/sharing_test.go index 81e527ef..687343ff 100644 --- a/server/integrationtests/sharing_test.go +++ b/server/integrationtests/sharing_test.go @@ -22,7 +22,6 @@ func TestSharing(t *testing.T) { }) t.Run("Check no initial sharing", func(t *testing.T) { - teamID := "0" newBoard := &model.Board{ TeamID: teamID, diff --git a/server/integrationtests/user_test.go b/server/integrationtests/user_test.go index d3fd69d4..28b3c034 100644 --- a/server/integrationtests/user_test.go +++ b/server/integrationtests/user_test.go @@ -10,11 +10,6 @@ import ( "github.com/stretchr/testify/require" ) -const ( - fakeUsername = "fakeUsername" - fakeEmail = "mock@test.com" -) - func TestGetMe(t *testing.T) { th := SetupTestHelper(t).Start() defer th.TearDown() @@ -129,7 +124,6 @@ func TestUserChangePassword(t *testing.T) { originalMe, resp := th.Client.GetMe() require.NoError(t, resp.Error) require.NotNil(t, originalMe) - } func randomBytes(t *testing.T, n int) []byte {