diff options
| author | Shulhan <ms@kilabit.info> | 2021-04-06 19:32:50 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-04-06 19:45:04 +0700 |
| commit | 3a5ca1ea9d097b7c101d76301b6077c20bb8ad44 (patch) | |
| tree | 5454c1c9d9362284e1481664b93319e4ee862e0a /parser_test.go | |
| parent | 4c1ded163e57698b227cbee36ae7cad105e34af5 (diff) | |
| download | asciidoctor-go-3a5ca1ea9d097b7c101d76301b6077c20bb8ad44.tar.xz | |
go.mod: set minimum Go version to 1.16 and update module share to v0.25.1
The latest update on share v0.25.1 remove the last boolean parameter
on lib/test.Assert().
Diffstat (limited to 'parser_test.go')
| -rw-r--r-- | parser_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parser_test.go b/parser_test.go index 94c775d..13a5653 100644 --- a/parser_test.go +++ b/parser_test.go @@ -23,6 +23,6 @@ func TestIsValidID(t *testing.T) { for _, c := range cases { got := isValidID([]byte(c.id)) - test.Assert(t, c.id, c.exp, got, true) + test.Assert(t, c.id, c.exp, got) } } |
