Skip to content

Commit 5d0a777

Browse files
committed
test
1 parent 2fccd70 commit 5d0a777

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

entry_certificate.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ func (c *EntryCertificateService) Delete(entryId string) error {
304304
if err != nil {
305305
return fmt.Errorf("failed to delete entry url. error: %w", err)
306306
}
307+
fmt.Println(reqUrl)
307308

308309
resp, err := c.client.Request(reqUrl, http.MethodDelete, nil)
309310
if err != nil {

entry_certificate_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package dvls
22

33
import (
4+
"fmt"
45
"io"
56
"os"
67
"reflect"
@@ -176,6 +177,8 @@ func test_UpdateCertificateEntry(t *testing.T) {
176177
}
177178

178179
func test_DeleteCertificateEntry(t *testing.T) {
180+
fmt.Println(testNewCertificateEntryURL.ID)
181+
fmt.Println(testNewCertificateEntryFile.ID)
179182
err := testClient.Entries.Certificate.Delete(testNewCertificateEntryURL.ID)
180183
if err != nil {
181184
t.Fatal(err)

0 commit comments

Comments
 (0)