File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
module github.com/aspose-words-cloud/aspose-words-cloud-go/dev
2
2
3
- go 1.13
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/stretchr/testify v1.5.1
7
7
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e
8
8
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6
9
9
)
10
+
11
+ require (
12
+ github.com/davecgh/go-spew v1.1.0 // indirect
13
+ github.com/golang/protobuf v1.2.0 // indirect
14
+ github.com/pmezard/go-difflib v1.0.0 // indirect
15
+ google.golang.org/appengine v1.4.0 // indirect
16
+ gopkg.in/yaml.v2 v2.2.2 // indirect
17
+ )
Original file line number Diff line number Diff line change @@ -196,9 +196,8 @@ func TestDebugMode(t *testing.T) {
196
196
}()
197
197
198
198
request := & models.CreateDocumentRequest {
199
- Optionals : map [string ]interface {}{
200
- "fileName" : "test.docx" ,
201
- },
199
+ FileName : ToStringPointer ("test.docx" ),
200
+ Optionals : map [string ]interface {}{},
202
201
}
203
202
204
203
_ , _ , err := client .WordsApi .CreateDocument (ctx , request )
You can’t perform that action at this time.
0 commit comments