Skip to content

Commit

Permalink
feat(Ferry): Update the Winthrop/Quincy ferry name
Browse files Browse the repository at this point in the history
  • Loading branch information
kotva006 committed May 1, 2024
1 parent 0f7e231 commit 19c91bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fares/format.ex
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ defmodule Fares.Format do
def name(:ferry_cross_harbor), do: "Cross Harbor Ferry"
def name(:ferry_east_boston), do: "East Boston Ferry"
def name(:ferry_lynn), do: "Lynn Ferry"
def name(:ferry_winthrop), do: "Winthrop Ferry"
def name(:ferry_winthrop), do: "Winthrop/Quincy Ferry"
def name(:ferry_george), do: "Georges Island"
def name(:commuter_ferry), do: "Hingham/Hull Ferry"
def name(:commuter_ferry_logan), do: "Commuter Ferry to Logan Airport"
Expand Down
2 changes: 1 addition & 1 deletion test/fares/format_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ defmodule Fares.FormatTest do
assert name(%Fare{name: :ferry_cross_harbor}) == "Cross Harbor Ferry"
assert name(%Fare{name: :ferry_east_boston}) == "East Boston Ferry"
assert name(%Fare{name: :ferry_lynn}) == "Lynn Ferry"
assert name(%Fare{name: :ferry_winthrop}) == "Winthrop Ferry"
assert name(%Fare{name: :ferry_winthrop}) == "Winthrop/Quincy Ferry"
assert name(%Fare{name: :commuter_ferry}) == "Hingham/Hull Ferry"
end

Expand Down

0 comments on commit 19c91bd

Please sign in to comment.