Skip to content

Commit fda44bd

Browse files
committedFeb 7, 2025
Fix test
1 parent f46296f commit fda44bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎tests/_utils/test_project/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies = [
88
]
99

1010
[build-system]
11-
requires = ["hatchling", "hatch-frozen @ file:///home/jairamir/dev/hatch-frozen"] # {{{hatch_frozen_cwd__}}}
11+
requires = ["hatchling", "hatch-frozen @ <<<hatch_frozen_cwd>>>"]
1212
build-backend = "hatchling.build"
1313

1414
[tool.hatch.build.targets.wheel.hooks.frozen]

‎tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_project():
2727
tmp_project = Path(tmpdir) / "hatch-frozen-test-project"
2828
shutil.copytree(source_dir, tmp_project)
2929

30-
pyproject_toml = source_dir / "pyproject.toml"
30+
pyproject_toml = tmp_project / "pyproject.toml"
3131
with open(pyproject_toml, "r") as f:
3232
content = f.read()
3333
new_content = content.replace(

0 commit comments

Comments
 (0)
Please sign in to comment.