Skip to content

Commit

Permalink
Guard on renewal order test for ARI support
Browse files Browse the repository at this point in the history
  • Loading branch information
eggsampler committed May 7, 2024
1 parent ab2a413 commit 46ae4b9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions order_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ func Test_checkFinalizedOrderStatus(t *testing.T) {
}

func TestClient_ReplacementOrder(t *testing.T) {

if testClient.dir.RenewalInfo == "" {
t.Skip("acme server does not support ari renewals")
return
}

account, order, _ := makeOrderFinalised(t, nil)
tc2 := testClient
tc2.dir.RenewalInfo = ""
Expand Down

0 comments on commit 46ae4b9

Please sign in to comment.