Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kotva006 committed Nov 9, 2023
1 parent e36cc95 commit f82badb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions apps/trip_plan/lib/trip_plan.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ defmodule TripPlan do
"""
alias Util.Position

# Default options for the plans
@default_opts [
# ~0.5 miles
]

@doc """
Tries to describe how to get between two places.
"""
Expand All @@ -24,7 +19,7 @@ defmodule TripPlan do
from,
to,
connection_opts,
Keyword.merge(@default_opts, opts),
opts,
parent
])
end
Expand Down
1 change: 0 additions & 1 deletion apps/trip_plan/test/api/open_trip_planner_test.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
defmodule TripPlan.Api.OpenTripPlannerTest do
use ExUnit.Case, async: false
import TripPlan.Api.OpenTripPlanner
alias TripPlan.NamedPosition

import Plug.Conn, only: [send_resp: 3]

Expand Down

0 comments on commit f82badb

Please sign in to comment.