Skip to content

Commit 1dcccb4

Browse files
committed
formatting
1 parent 02637b6 commit 1dcccb4

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

server/tests/test_wayfinding.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import os
21
from src.wayfinding import get_routes
32
from dotenv import load_dotenv
43

@@ -11,7 +10,6 @@ def test_calculate_route():
1110
destination = "Ashbourne Meath"
1211
mode = "Walking"
1312
alternatives = "true"
14-
key = os.getenv("GOOGLE_MAPS_API_KEY")
1513

1614
response = get_routes(origin, destination, mode, alternatives)
1715
assert response.get("status") == "OK"
@@ -30,7 +28,6 @@ def test_calculate_route_api_key():
3028
origin = "Tara Street"
3129
Destination = "Ashbourne"
3230
mode = "Walking"
33-
key = "SAjhdgfsjkg67345834"
3431

3532
response = get_routes(
3633
origin, Destination, mode, alternatives="TRUE"
@@ -45,7 +42,6 @@ def test_check_transport_modes():
4542
destination = "Ashbourne Meath"
4643
mode = "Walking"
4744
alternatives = "true"
48-
key = os.getenv("GOOGLE_MAPS_API_KEY")
4945
modes = ["driving", "walking", "transit", "bicycling"]
5046

5147
response = ""

0 commit comments

Comments
 (0)