summaryrefslogtreecommitdiffstats
path: root/markup/org
diff options
context:
space:
mode:
Diffstat (limited to 'markup/org')
-rw-r--r--markup/org/convert_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/markup/org/convert_test.go b/markup/org/convert_test.go
index 94fcdf836..9fc946ca6 100644
--- a/markup/org/convert_test.go
+++ b/markup/org/convert_test.go
@@ -31,5 +31,5 @@ func TestConvert(t *testing.T) {
c.Assert(err, qt.IsNil)
b, err := conv.Convert(converter.RenderContext{Src: []byte("testContent")})
c.Assert(err, qt.IsNil)
- c.Assert(string(b.Bytes()), qt.Equals, "<p>\ntestContent\n</p>\n")
+ c.Assert(string(b.Bytes()), qt.Equals, "<p>testContent</p>\n")
}