summaryrefslogtreecommitdiffstats
path: root/api/post_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-07-22 18:05:44 -0800
committer=Corey Hulen <corey@hulen.com>2015-07-22 18:05:44 -0800
commitc277a98b5d88c81df39f8e33ef1286f72ac04014 (patch)
tree0d96238a2ee3ab121ea576db9900311ff5a57ba6 /api/post_test.go
parente0bad6c03784d44210760577550be585daf513b9 (diff)
parentf4c3eaa8c091366a956fa2ab48124190f4f9082b (diff)
downloadchat-c277a98b5d88c81df39f8e33ef1286f72ac04014.tar.gz
chat-c277a98b5d88c81df39f8e33ef1286f72ac04014.tar.bz2
chat-c277a98b5d88c81df39f8e33ef1286f72ac04014.zip
Merge branch 'master' into mm-1420
Diffstat (limited to 'api/post_test.go')
-rw-r--r--api/post_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/post_test.go b/api/post_test.go
index e245366ca..cbba83af6 100644
--- a/api/post_test.go
+++ b/api/post_test.go
@@ -37,7 +37,7 @@ func TestCreatePost(t *testing.T) {
channel2 := &model.Channel{DisplayName: "Test API Name", Name: "a" + model.NewId() + "a", Type: model.CHANNEL_OPEN, TeamId: team.Id}
channel2 = Client.Must(Client.CreateChannel(channel2)).Data.(*model.Channel)
- filenames := []string{"/api/v1/files/get/12345678901234567890123456/12345678901234567890123456/test.png", "/api/v1/files/get/" + channel1.Id + "/" + user1.Id + "/test.png", "www.mattermost.com/fake/url", "junk"}
+ filenames := []string{"/12345678901234567890123456/12345678901234567890123456/12345678901234567890123456/test.png", "/" + channel1.Id + "/" + user1.Id + "/test.png", "www.mattermost.com/fake/url", "junk"}
post1 := &model.Post{ChannelId: channel1.Id, Message: "#hashtag a" + model.NewId() + "a", Filenames: filenames}
rpost1, err := Client.CreatePost(post1)