summaryrefslogtreecommitdiffstats
path: root/app/config_test.go
diff options
context:
space:
mode:
authorDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:01:02 -0500
committerDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:01:02 -0500
commitc209e4457457edc042f063390c9a222a694f3a6d (patch)
tree5e1653318a6a14bcad80025793adab0f700deed9 /app/config_test.go
parent62efb1df754bfe6b10a3c17ca6f89fd33b991f56 (diff)
downloadchat-c209e4457457edc042f063390c9a222a694f3a6d.tar.gz
chat-c209e4457457edc042f063390c9a222a694f3a6d.tar.bz2
chat-c209e4457457edc042f063390c9a222a694f3a6d.zip
revert master changes
Diffstat (limited to 'app/config_test.go')
-rw-r--r--app/config_test.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/config_test.go b/app/config_test.go
index 5ee999f0f..e3d50b958 100644
--- a/app/config_test.go
+++ b/app/config_test.go
@@ -6,8 +6,6 @@ package app
import (
"testing"
- "github.com/stretchr/testify/assert"
-
"github.com/mattermost/mattermost-server/model"
)
@@ -56,10 +54,3 @@ func TestConfigListener(t *testing.T) {
t.Fatal("listener 2 should've been called")
}
}
-
-func TestAsymmetricSigningKey(t *testing.T) {
- th := Setup().InitBasic()
- defer th.TearDown()
- assert.NotNil(t, th.App.AsymmetricSigningKey())
- assert.NotEmpty(t, th.App.ClientConfig()["AsymmetricSigningPublicKey"])
-}