Skip to content

Commit

Permalink
Fix Storage Blob test using invalid URL syntax (Azure#36163)
Browse files Browse the repository at this point in the history
  • Loading branch information
alzimmermsft authored Jul 29, 2023
1 parent 43b078a commit 70c3cfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,7 @@ class BlobAPITest extends APISpec {
when:
// sas token's st and se are usually in the following format: st=2021-06-21T00:00:00Z&se=2021-06-22T00:00:00Z
// using a hardcoded url to test the start time and end time parsing without time added
def testUrl = "https://<accountName>/<containerName>?sp=racwdl&st=2023-06-21&se=2023-06-22&spr=https&sv=2022-11-02&sr=c&sig=<signatureToken>"
def testUrl = "https://accountName/containerName?sp=racwdl&st=2023-06-21&se=2023-06-22&spr=https&sv=2022-11-02&sr=c&sig=<signatureToken>"
def parts = BlobUrlParts.parse(testUrl)

then:
Expand Down

0 comments on commit 70c3cfc

Please sign in to comment.