Skip to content

Commit

Permalink
Chore: Remove PLF routing TODOs
Browse files Browse the repository at this point in the history
These were added while the individual pages were implemented and
can now be removed
  • Loading branch information
colinbruce committed Jan 10, 2025
1 parent c7aa5ef commit 11c4c1a
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -79,9 +79,9 @@
.to("district_judge")
end

it "redirects to the next page", skip: "TODO: AP-5531/5532" do
it "redirects to the next page" do
post_original_judge_level
expect(response).to redirect_to(:appeal_court_type)
expect(response).to redirect_to(providers_legal_aid_application_second_appeal_court_type_path)
end
end

Original file line number Diff line number Diff line change
@@ -70,9 +70,9 @@
expect(legal_aid_application.reload.appeal.second_appeal).to be true
end

it "redirects to the next page", skip: "TODO: AP-5530" do
it "redirects to the next page" do
post_second_appeal
expect(response).to redirect_to(:second_appeal_court)
expect(response).to redirect_to(providers_legal_aid_application_second_appeal_court_type_path)
end
end

@@ -88,9 +88,9 @@
expect(legal_aid_application.reload.appeal.second_appeal).to be false
end

it "redirects to the next page", skip: "TODO: AP-5530" do
it "redirects to the next page" do
post_second_appeal
expect(response).to redirect_to(:original_judge_level)
expect(response).to redirect_to(providers_legal_aid_application_original_judge_level_path)
end
end

0 comments on commit 11c4c1a

Please sign in to comment.