pipline failed for some reason, checking output

tests all passing locally, lets see what the issue is.
This commit is contained in:
Dave Shanley
2023-02-20 05:59:30 -05:00
parent def670dbba
commit 696e810ec7

View File

@@ -4,6 +4,7 @@
package v3 package v3
import ( import (
"fmt"
"io/ioutil" "io/ioutil"
"net/url" "net/url"
"testing" "testing"
@@ -413,6 +414,9 @@ func TestDigitalOceanAsDoc(t *testing.T) {
lowDoc, err = lowv3.CreateDocumentFromConfig(info, &config) lowDoc, err = lowv3.CreateDocumentFromConfig(info, &config)
if err != nil { if err != nil {
for e := range err {
fmt.Println(err[e])
}
panic("broken something") panic("broken something")
} }
d := NewDocument(lowDoc) d := NewDocument(lowDoc)
@@ -435,6 +439,9 @@ func TestDigitalOceanAsDocFromSHA(t *testing.T) {
lowDoc, err = lowv3.CreateDocumentFromConfig(info, &config) lowDoc, err = lowv3.CreateDocumentFromConfig(info, &config)
if err != nil { if err != nil {
for e := range err {
fmt.Println(err[e])
}
panic("broken something") panic("broken something")
} }
d := NewDocument(lowDoc) d := NewDocument(lowDoc)