fixing filename weirdness in drafts after adjustments from testing

This commit is contained in:
2017-08-01 13:24:55 -07:00
parent f49229d723
commit 2595c37b72
3 changed files with 7 additions and 5 deletions
+4 -2
View File
@@ -48,6 +48,8 @@ func TestEdits(t *testing.T) {
defer w.Clean()
const title = "sometitle"
var contentPath = path.Join("content", title+".md")
w.CH.NewContent(title, "")
send := []acedoc.Delta{
@@ -58,7 +60,7 @@ func TestEdits(t *testing.T) {
var mtx sync.Mutex
received := []acedoc.Delta{}
doc, err := w.CH.client(title + ".md")
doc, err := w.CH.client(contentPath)
if err != nil {
t.Fatal("error creating document client:", err)
}
@@ -71,7 +73,7 @@ func TestEdits(t *testing.T) {
return nil
}))
_, ok := w.CH.hasdocref(title + ".md")
_, ok := w.CH.hasdocref(contentPath)
if !ok {
t.Fatal("expected there to be an established client")
}