Skip to content

Commit

Permalink
Escape unused DateFormat characters (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Feb 7, 2022
1 parent fc96007 commit f9d5521
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/s3path.jl
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,9 @@ end

# This is the main entrypoint for the S3Path tests
function s3path_tests(config)
bucket_name =
"ocaws.jl.test." * lowercase(Dates.format(now(Dates.UTC), "yyyymmddTHHMMSSZ"))
bucket_name = let df = dateformat"yyyymmdd\THHMMSS\Z"
"ocaws.jl.test." * lowercase(Dates.format(now(Dates.UTC), df))
end

s3_create_bucket(config, bucket_name)
root = Path("s3://$bucket_name/pathset-root/")
Expand Down

0 comments on commit f9d5521

Please sign in to comment.