summaryrefslogtreecommitdiffstats
path: root/web/web_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-22 16:31:58 -0600
committer=Corey Hulen <corey@hulen.com>2016-01-22 16:31:58 -0600
commitc2d98c2c1f4860c11aedf43aff5e360256a89835 (patch)
tree4304f7584025477d74e5e70677c4f5a70c26bb58 /web/web_test.go
parent6e2c1b7fd5248c6a4a91edcd59fa124c8d3c744a (diff)
parentd352c5b64dddfb8e46b18edbd7352c41495078a1 (diff)
downloadchat-c2d98c2c1f4860c11aedf43aff5e360256a89835.tar.gz
chat-c2d98c2c1f4860c11aedf43aff5e360256a89835.tar.bz2
chat-c2d98c2c1f4860c11aedf43aff5e360256a89835.zip
merging
Diffstat (limited to 'web/web_test.go')
-rw-r--r--web/web_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/web_test.go b/web/web_test.go
index abe5ab2f1..26239c34a 100644
--- a/web/web_test.go
+++ b/web/web_test.go
@@ -22,6 +22,7 @@ var URL string
func Setup() {
if api.Srv == nil {
utils.LoadConfig("config.json")
+ utils.InitTranslations()
api.NewServer()
api.StartServer()
api.InitApi()
@@ -45,7 +46,7 @@ func TestStatic(t *testing.T) {
// add a short delay to make sure the server is ready to receive requests
time.Sleep(1 * time.Second)
- resp, err := http.Get(URL + "/static/images/favicon.ico")
+ resp, err := http.Get(URL + "/static/images/favicon/favicon-16x16.png")
if err != nil {
t.Fatalf("got error while trying to get static files %v", err)