@@ -15,7 +15,7 @@ async def test_health(client):
1515
1616async def test_public_map_without_token_options (client , mock_upstream ):
1717 """
18- Test to make sure a OPTIONS request without a token to a private map results
18+ Test to make sure a OPTIONS request without a token to a public map results
1919 in a call to the upstream public server.
2020 """
2121 mock_upstream .options (f"{ PUBLIC_PROXY_URL } /maps/luchtfoto" , status = 200 )
@@ -25,7 +25,7 @@ async def test_public_map_without_token_options(client, mock_upstream):
2525
2626async def test_public_map_without_token_get (client , mock_upstream ):
2727 """
28- Test to make sure a GET request without a token to a private map results
28+ Test to make sure a GET request without a token to a public map results
2929 in a call to the upstream public server.
3030 """
3131 mock_upstream .get (f"{ PUBLIC_PROXY_URL } /maps/luchtfoto" , status = 200 )
@@ -35,7 +35,7 @@ async def test_public_map_without_token_get(client, mock_upstream):
3535
3636async def test_public_map_without_token_post (client , mock_upstream ):
3737 """
38- Test to make sure a POST request without a token to a private map results
38+ Test to make sure a POST request without a token to a public map results
3939 in a call to the upstream public server.
4040 """
4141 mock_upstream .post (f"{ PUBLIC_PROXY_URL } /maps/luchtfoto" , status = 200 )
0 commit comments