Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
missed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
scottleedavis committed May 13, 2019
1 parent 46b149c commit 45c4b26
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions server/command_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"testing"
"fmt"
"testing"

"github.com/mattermost/mattermost-server/model"
"github.com/mattermost/mattermost-server/plugin/plugintest"
Expand Down Expand Up @@ -45,7 +45,7 @@ func TestHandleCommand(t *testing.T) {
UserId: "userID1",
})

assert.NotNil(t,r)
assert.NotNil(t, r)
assert.Nil(t, err)
})

Expand Down Expand Up @@ -74,7 +74,7 @@ func TestHandleCommand(t *testing.T) {
UserId: "userID1",
})

assert.NotNil(t,r)
assert.NotNil(t, r)
assert.Nil(t, err)
})

Expand Down Expand Up @@ -142,7 +142,6 @@ func TestHandleCommand(t *testing.T) {
//assert.Nil(t, err)
})


t.Run("/remind me foo in 2 seconds", func(t *testing.T) {

//channel := &model.Channel{
Expand Down Expand Up @@ -257,7 +256,7 @@ func TestHandleCommand(t *testing.T) {
UserId: "userID1",
})

assert.NotNil(t,r)
assert.NotNil(t, r)
assert.Nil(t, err)
})

Expand Down Expand Up @@ -286,7 +285,7 @@ func TestHandleCommand(t *testing.T) {
UserId: "userID1",
})

assert.NotNil(t,r)
assert.NotNil(t, r)
assert.Nil(t, err)
})
}
}

0 comments on commit 45c4b26

Please sign in to comment.