bugfix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-24 23:02:28 +11:00
parent 3e715f5390
commit 6e17210e00
2 changed files with 2 additions and 1 deletions

2
go.mod
View File

@@ -1,5 +1,5 @@
module apitester module apitester
go 1.23.1 go 1.24.1
require github.com/iancoleman/orderedmap v0.3.0 require github.com/iancoleman/orderedmap v0.3.0

View File

@@ -161,6 +161,7 @@ func RunTest(testCase *TestCase) error {
json.Unmarshal(body, &b) json.Unmarshal(body, &b)
if b != nil { if b != nil {
testCase.ResultBodyMap = b.(map[string]interface{}) testCase.ResultBodyMap = b.(map[string]interface{})
//fmt.Printf("Body map: '%v'\n", testCase.ResultBodyMap)
//bodyMap = b.(map[string]interface{}) //bodyMap = b.(map[string]interface{})
} }
} }