Skip to content

Commit

Permalink
Allow for non-local version specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
cidrblock committed Sep 8, 2023
1 parent ef41cb6 commit 4228c53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Empty file added tests/unit/__init__.py
Empty file.
6 changes: 3 additions & 3 deletions tests/unit/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Unit test for the utilties module."""
"""Unit test for the utilities module."""

from __future__ import annotations

Expand Down Expand Up @@ -30,15 +30,15 @@
),
),
(
"/", # noqa:
"/",
CollectionSpec(
specifier=None,
local=True,
path=Path("/"),
),
),
(
"/[test]", # noqa:
"/[test]",
CollectionSpec(
specifier=None,
local=True,
Expand Down

0 comments on commit 4228c53

Please sign in to comment.