markup/asciidocext: Fix broken test

This commit is contained in:
Bjørn Erik Pedersen 2020-09-08 10:00:57 +02:00
parent f7c1b5fe1c
commit 4949bdc2ef
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ func TestAsciidoctorDefaultArgs(t *testing.T) {
c.Assert(ac, qt.Not(qt.IsNil))
args := ac.parseArgs(converter.DocumentContext{})
expected := []string{"--no-header-footer", "--trace"}
expected := []string{"--no-header-footer"}
c.Assert(args, qt.DeepEquals, expected)
}
@ -110,7 +110,7 @@ func TestAsciidoctorDisallowedArgs(t *testing.T) {
c.Assert(ac, qt.Not(qt.IsNil))
args := ac.parseArgs(converter.DocumentContext{})
expected := []string{"--no-header-footer", "--trace"}
expected := []string{"--no-header-footer"}
c.Assert(args, qt.DeepEquals, expected)
}