aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2021-11-09 14:43:18 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2021-11-09 14:45:36 +0100
commitd4c73d5e6536535015f953ba2e5c3b83979819af (patch)
tree3490fec71ba4526c0f1d59827d215b970f6c61ac /test
parent9c153e3d6e877ce53e8e4f5a9c44f682b973e777 (diff)
downloadpandoc-d4c73d5e6536535015f953ba2e5c3b83979819af.tar.gz
Lua: fix argument order in constructor `pandoc.Cite`.
This restores the old behavior; argument order had been switched accidentally in pandoc 2.15.
Diffstat (limited to 'test')
-rw-r--r--test/lua/module/pandoc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lua/module/pandoc.lua b/test/lua/module/pandoc.lua
index 5a58914ef..4f4a9b27e 100644
--- a/test/lua/module/pandoc.lua
+++ b/test/lua/module/pandoc.lua
@@ -151,17 +151,17 @@ return {
group "Inline elements" {
group 'Cite' {
test('has property `content`', function ()
- local cite = pandoc.Cite({}, {pandoc.Emph 'important'})
+ local cite = pandoc.Cite({pandoc.Emph 'important'}, {})
assert.are_same(cite.content, {pandoc.Emph {pandoc.Str 'important'}})
cite.content = 'boring'
- assert.are_equal(cite, pandoc.Cite({}, {pandoc.Str 'boring'}))
+ assert.are_equal(cite, pandoc.Cite({pandoc.Str 'boring'}, {}))
end),
test('has list of citations in property `cite`', function ()
local citations = {
pandoc.Citation('einstein1905', 'NormalCitation')
}
- local cite = pandoc.Cite(citations, 'relativity')
+ local cite = pandoc.Cite('relativity', citations)
assert.are_same(cite.citations, citations)
local new_citations = {
@@ -169,7 +169,7 @@ return {
pandoc.Citation('Poincaré1905', 'NormalCitation')
}
cite.citations = new_citations
- assert.are_equal(cite, pandoc.Cite(new_citations, {'relativity'}))
+ assert.are_equal(cite, pandoc.Cite({'relativity'}, new_citations))
end),
},
group 'Code' {