Skip to content

Commit

Permalink
E2E: Fix the problems with test_download_since_last_run
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed May 20, 2024
1 parent 89253cf commit 879e621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/fixures.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def is_exists(self) -> bool:
return self.path_of_marker_file.is_file()

def set_date(self, new_modification_time: datetime.datetime) -> None:
if self.is_exists():
if not self.is_exists():
self.path_of_marker_file.write_text(generate_random_string())

dt = new_modification_time.timestamp()
Expand Down

0 comments on commit 879e621

Please sign in to comment.