From c85d3f4252f43a2c36b6a6ced91459adabd2c0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Ra=C4=8Dinsk=C3=BD?= Date: Thu, 28 May 2020 16:58:19 +0200 Subject: [PATCH] fixed tests, added ssh url to them --- test/ghtype_tests.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/ghtype_tests.jl b/test/ghtype_tests.jl index 84263f9..26c11c0 100644 --- a/test/ghtype_tests.jl +++ b/test/ghtype_tests.jl @@ -88,6 +88,7 @@ end "full_name": "octocat/Hello-World", "private": false, "url": "https://api.github.com/repos/octocat/Hello-World", + "ssh_url": "git@github.com:octocat/Hello-World.git", "language": null, "pushed_at": "2011-01-26T19:06:43Z", "permissions": { @@ -118,6 +119,8 @@ end HTTP.URI(repo_json["url"]), nothing, nothing, + HTTP.URI(repo_json["ssh_url"]), + nothing, Dates.DateTime(chop(repo_json["pushed_at"])), nothing, nothing, @@ -137,6 +140,7 @@ end full_name = "octocat/Hello-World", private = false, url = "https://api.github.com/repos/octocat/Hello-World", + ssh_url = "git@github.com:octocat/Hello-World.git", pushed_at = "2011-01-26T19:06:43Z", permissions = Dict( "admin" => false,