Skip to content

Commit

Permalink
Broken PO tests corrected (#1766)
Browse files Browse the repository at this point in the history
Signed-off-by: 10sharmashivam <[email protected]>
  • Loading branch information
10sharmashivam authored Oct 30, 2024
1 parent 2ab1024 commit 9af4cac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/data_types_and_io/data_types_and_io/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ def normalize_csv_file(
if __name__ == "__main__":
default_files = [
(
"https://people.sc.fsu.edu/~jburkardt/data/csv/biostats.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/biostats.csv",
["Name", "Sex", "Age", "Heights (in)", "Weight (lbs)"],
["Age"],
),
(
"https://people.sc.fsu.edu/~jburkardt/data/csv/faithful.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/faithful.csv",
["Index", "Eruption length (mins)", "Eruption wait (mins)"],
["Eruption length (mins)"],
),
Expand Down
4 changes: 2 additions & 2 deletions examples/data_types_and_io/data_types_and_io/folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def download_and_normalize_csv_files(
# Run the workflow locally
if __name__ == "__main__":
csv_urls = [
"https://people.sc.fsu.edu/~jburkardt/data/csv/biostats.csv",
"https://people.sc.fsu.edu/~jburkardt/data/csv/faithful.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/biostats.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/faithful.csv",
]
columns_metadata = [
["Name", "Sex", "Age", "Heights (in)", "Weight (lbs)"],
Expand Down

0 comments on commit 9af4cac

Please sign in to comment.