We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cea9c9 commit d7d0c04Copy full SHA for d7d0c04
product/gradle-plugin/src/test/integration/test_gradle_plugin.py
@@ -668,8 +668,8 @@ def test_fail(self):
668
def test_symlink(self):
669
run = self.RunGradle("base", "PythonReqs/1a", run=False)
670
link_path = f"{run.project_dir}/app"
671
- real_path = f"{run.project_dir}/app_real"
672
- os.rename(link_path, real_path)
+ real_path = f"{run.project_dir}/subdir/app"
+ os.renames(link_path, real_path)
673
os.symlink(real_path, link_path)
674
run.rerun(requirements=["apple/__init__.py"])
675
0 commit comments