Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed May 2, 2024
1 parent 88378a0 commit 2d9dc13
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
│ · ╰── The relative import path was registered here
│ 12 │ bp.route(GET, "/home", f!(crate::handler));
│ ╰────
│  help: If it is a local import, the path must start with `crate::`.
│  help: If it is a local import, the path must start with `crate::`,
│ `self::` or `super::`.
│ If it is an import from a dependency, the path must start with the
│ dependency name (e.g. `dependency::`).
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
│ · The relative import path was registered here
│ 11 │ bp
│ ╰────
│  help: If it is a local import, the path must start with `crate::`.
│  help: If it is a local import, the path must start with `crate::`,
│ `self::` or `super::`.
│ If it is an import from a dependency, the path must start with the
│ dependency name (e.g. `dependency::`).
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
│ · The relative import path was registered here
│ 17 │ bp.route(GET, "/home", f!(crate::handler::<std::string::String>));
│ ╰────
│  help: If it is a local import, the path must start with `crate::`.
│  help: If it is a local import, the path must start with `crate::`,
│ `self::` or `super::`.
│ If it is an import from a dependency, the path must start with the
│ dependency name (e.g. `dependency::`).

0 comments on commit 2d9dc13

Please sign in to comment.