Skip to content

Commit

Permalink
more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kvch committed Jul 14, 2020
1 parent 2f8d4db commit 75b7725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filebeat/tests/system/test_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ def test_inode_marker_based_identity_tracking(self):
File is picked up again if the contents of the marker file changes.
"""

marker_location = self.working_dir + "/marker"
marker_location = os.path.join(self.working_dir, "marker")
with open(marker_location, 'w') as m:
m.write("very-unique-string")

Expand Down Expand Up @@ -753,7 +753,7 @@ def test_inode_marker_based_identity_tracking_to_path_based(self):
File reading can be continued after file_identity is changed.
"""

marker_location = self.working_dir + "/marker"
marker_location = os.path.join(self.working_dir, "marker")
with open(marker_location, 'w') as m:
m.write("very-unique-string")

Expand Down

0 comments on commit 75b7725

Please sign in to comment.