Skip to content

Commit

Permalink
testing Path beh
Browse files Browse the repository at this point in the history
  • Loading branch information
vklonin committed Mar 12, 2024
1 parent 01c5953 commit 16513a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/test_jdi_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ def test_creation_with_param(self):
p = PropertyPath("test.txt")
assert p._filename.name == "test.txt"

@pytest.mark.skipif(os.getcwd() == os.path.dirname(__file__), reason="Tests require current directory to be the same as the test directory")
def test_get_property_file(self):
print(os.getcwd())
assert PropertyPath().get_property_file() == Path("jdi.properties")
assert PropertyPath().get_property_file() == Path("jdi.properties").absolute()

0 comments on commit 16513a8

Please sign in to comment.