Skip to content

Commit

Permalink
more corrections after ruff path changes
Browse files Browse the repository at this point in the history
  • Loading branch information
valentijnscholten committed Feb 15, 2025
1 parent 473f66b commit 49f6045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/close_old_findings_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CloseOldTest(BaseTestCase):
# --------------------------------------------------------------------------------------------------------
def setUp(self):
super().setUp()
self.relative_path = str(Path(os.path.realpath(__file__)).parent)
self.relative_path = Path(os.path.realpath(__file__)).parent

@on_exception_html_source_logger
def test_delete_findings(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/dedupe_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DedupeTest(BaseTestCase):
# --------------------------------------------------------------------------------------------------------
def setUp(self):
super().setUp()
self.relative_path = str(Path(os.path.realpath(__file__)).parent)
self.relative_path = Path(os.path.realpath(__file__)).parent

def check_nb_duplicates(self, expected_number_of_duplicates):
logger.debug("checking duplicates...")
Expand Down

0 comments on commit 49f6045

Please sign in to comment.