Skip to content

Commit 5447110

Browse files
authored
Fix adjust not defined in Main (#35)
1 parent 3c94099 commit 5447110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/http_helpers.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function test_server()
1313
add_entry(x509_name, "ST", "Isles of Redmond")
1414
add_entry(x509_name, "CN", "www.redmond.com")
1515

16-
adjust(x509_certificate.time_not_before, Second(0))
17-
adjust(x509_certificate.time_not_after, Year(1))
16+
Dates.adjust(x509_certificate.time_not_before, Second(0))
17+
Dates.adjust(x509_certificate.time_not_after, Year(1))
1818

1919
x509_certificate.subject_name = x509_name
2020
x509_certificate.issuer_name = x509_name

0 commit comments

Comments
 (0)