We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c2d3fb + 79cac42 commit d845ea6Copy full SHA for d845ea6
2 files changed
tools/render_test.go
@@ -7,7 +7,7 @@ import (
7
func Example_markdown2text() {
8
markdown, _ := GetMarkDown("base64")
9
fmt.Println(len(MarkdownToText(markdown)))
10
- // Output: 737
+ // Output: 697
11
}
12
13
func Example_extractUsage() {
tools/tools_test.go
@@ -2,8 +2,9 @@ package tools
2
3
import (
4
"fmt"
5
- "github.com/stretchr/testify/require"
6
"testing"
+
+ "github.com/stretchr/testify/require"
)
func TestMarkdownHelp(t *testing.T) {
@@ -32,5 +33,5 @@ func TestGetMarkDownError(t *testing.T) {
32
33
func ExampleMergeToolsList() {
34
mergedList := MergeToolsList([]string{})
35
fmt.Println(len(mergedList))
- //Output: 24
36
+ //Output: 25
37
0 commit comments