Skip to content

Commit

Permalink
Generate test RSS in the temporary directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Jan 12, 2024
1 parent 3cd0209 commit c809808
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/test_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ def add_entry(self):
return self

def build(self):
rss_file_name = "podcast.xml"
self.fg.rss_file(rss_file_name)
path_to_file = os.path.join(self.feed_source, "podcast.xml")
self.fg.rss_file(path_to_file)

return rss_file_name
return path_to_file

def __add_file_in_source(self, file_name):
path_to_file = os.path.join(self.feed_source, file_name)
Expand Down

0 comments on commit c809808

Please sign in to comment.