summaryrefslogtreecommitdiffstats
path: root/api4
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-03-16 17:00:00 -0400
committerCorey Hulen <corey@hulen.com>2017-03-16 14:00:00 -0700
commit9298315ce925afeb7824980e337633e3787643cd (patch)
tree2a15d3a62add27441e3c8d99a0b0cde566cded84 /api4
parent05e3dc9f2a352d053654fe0efa99de0a74fd566a (diff)
downloadchat-9298315ce925afeb7824980e337633e3787643cd.tar.gz
chat-9298315ce925afeb7824980e337633e3787643cd.tar.bz2
chat-9298315ce925afeb7824980e337633e3787643cd.zip
Fxing code coverage numbers + APIv4 tests with EE (#5789)
Diffstat (limited to 'api4')
-rw-r--r--api4/user_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/api4/user_test.go b/api4/user_test.go
index 87e1dd64f..4805a1a51 100644
--- a/api4/user_test.go
+++ b/api4/user_test.go
@@ -11,7 +11,6 @@ import (
"github.com/mattermost/platform/app"
"github.com/mattermost/platform/model"
- "github.com/mattermost/platform/store"
"github.com/mattermost/platform/utils"
)
@@ -804,7 +803,7 @@ func TestGetUsersNotInChannel(t *testing.T) {
CheckNoError(t, resp)
}
-func TestUpdateUserMfa(t *testing.T) {
+/*func TestUpdateUserMfa(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
defer TearDown()
Client := th.Client
@@ -844,7 +843,7 @@ func TestUpdateUserMfa(t *testing.T) {
_, resp = Client.UpdateUserMfa(ruser.Id, "123456", false)
CheckNotImplementedStatus(t, resp)
-}
+}*/
func TestUpdateUserPassword(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()