Skip to content

Commit

Permalink
update IT protocole from http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
mprevel committed Jan 16, 2025
1 parent c4a303f commit bddb10f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import scala.concurrent.duration._
//see http://deckofcardsapi.com/
class DeckOfCard extends CornichonFeature with DeckSteps {

override lazy val baseUrl = "http://deckofcardsapi.com/api"
override lazy val baseUrl = "https://deckofcardsapi.com/api"

def feature =
Feature("Deck of Card API") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@ class StarWars extends CornichonFeature {
"eye_color": "blue",
"birth_year": "19BBY",
"gender": "male",
"homeworld": "http://swapi.dev/api/planets/1/",
"homeworld": "https://swapi.dev/api/planets/1/",
"films": [
"http://swapi.dev/api/films/1/",
"http://swapi.dev/api/films/2/",
"http://swapi.dev/api/films/3/",
"http://swapi.dev/api/films/6/"
"https://swapi.dev/api/films/1/",
"https://swapi.dev/api/films/2/",
"https://swapi.dev/api/films/3/",
"https://swapi.dev/api/films/6/"
],
"species": [],
"vehicles": [
"http://swapi.dev/api/vehicles/14/",
"http://swapi.dev/api/vehicles/30/"
"https://swapi.dev/api/vehicles/14/",
"https://swapi.dev/api/vehicles/30/"
],
"starships": [
"http://swapi.dev/api/starships/12/",
"http://swapi.dev/api/starships/22/"
"https://swapi.dev/api/starships/12/",
"https://swapi.dev/api/starships/22/"
],
"created": "2014-12-09T13:50:51.644000Z",
"edited": "2014-12-20T21:17:56.891000Z",
"url": "http://swapi.dev/api/people/1/"
"url": "https://swapi.dev/api/people/1/"
}
"""
)
Expand All @@ -63,27 +63,27 @@ class StarWars extends CornichonFeature {
"surface_water" : "1",
"population" : "200000",
"residents" : [
"http://swapi.dev/api/people/1/",
"http://swapi.dev/api/people/2/",
"http://swapi.dev/api/people/4/",
"http://swapi.dev/api/people/6/",
"http://swapi.dev/api/people/7/",
"http://swapi.dev/api/people/8/",
"http://swapi.dev/api/people/9/",
"http://swapi.dev/api/people/11/",
"http://swapi.dev/api/people/43/",
"http://swapi.dev/api/people/62/"
"https://swapi.dev/api/people/1/",
"https://swapi.dev/api/people/2/",
"https://swapi.dev/api/people/4/",
"https://swapi.dev/api/people/6/",
"https://swapi.dev/api/people/7/",
"https://swapi.dev/api/people/8/",
"https://swapi.dev/api/people/9/",
"https://swapi.dev/api/people/11/",
"https://swapi.dev/api/people/43/",
"https://swapi.dev/api/people/62/"
],
"films" : [
"http://swapi.dev/api/films/1/",
"http://swapi.dev/api/films/3/",
"http://swapi.dev/api/films/4/",
"http://swapi.dev/api/films/5/",
"http://swapi.dev/api/films/6/"
"https://swapi.dev/api/films/1/",
"https://swapi.dev/api/films/3/",
"https://swapi.dev/api/films/4/",
"https://swapi.dev/api/films/5/",
"https://swapi.dev/api/films/6/"
],
"created" : "2014-12-09T13:50:49.641000Z",
"edited" : "2014-12-20T20:58:18.411000Z",
"url" : "http://swapi.dev/api/planets/1/"
"url" : "https://swapi.dev/api/planets/1/"
}
"""
)
Expand Down

0 comments on commit bddb10f

Please sign in to comment.