Skip to content

Commit

Permalink
Relax match
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed May 17, 2019
1 parent d7d1b63 commit 385e96e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/phoenix/router/routing_test.exs
Expand Up @@ -29,7 +29,7 @@ defmodule Phoenix.Router.RoutingTest do
get "/backups/*path", UserController, :image
get "/static/images/icons/*image", UserController, :image

trace("/trace", UserController, :trace)
trace "/trace", UserController, :trace
options "/options", UserController, :options
connect "/connect", UserController, :connect
match :move, "/move", UserController, :move
Expand Down Expand Up @@ -172,7 +172,6 @@ defmodule Phoenix.Router.RoutingTest do
helper: "user",
host: nil,
kind: :match,
line: 39,
opts: :not_found,
path: "/*path",
pipe_through: [],
Expand All @@ -188,7 +187,6 @@ defmodule Phoenix.Router.RoutingTest do
helper: "users",
host: nil,
kind: :match,
line: 24,
opts: :show,
path: "/users/:id",
pipe_through: [],
Expand All @@ -202,7 +200,6 @@ defmodule Phoenix.Router.RoutingTest do
helper: "users",
host: nil,
kind: :match,
line: 22,
opts: :index,
path: "/",
pipe_through: [],
Expand Down

0 comments on commit 385e96e

Please sign in to comment.