From 9af4cac647f7f66b1dd82d6e1a21397780efbcaf Mon Sep 17 00:00:00 2001 From: Shivam Sharma <66767992+10sharmashivam@users.noreply.github.com> Date: Thu, 31 Oct 2024 01:36:55 +0530 Subject: [PATCH] Broken PO tests corrected (#1766) Signed-off-by: 10sharmashivam <10sharmashivam@gmail.com> --- examples/data_types_and_io/data_types_and_io/file.py | 4 ++-- examples/data_types_and_io/data_types_and_io/folder.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/data_types_and_io/data_types_and_io/file.py b/examples/data_types_and_io/data_types_and_io/file.py index 74d83ae66..1c89c1e18 100644 --- a/examples/data_types_and_io/data_types_and_io/file.py +++ b/examples/data_types_and_io/data_types_and_io/file.py @@ -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)"], ), diff --git a/examples/data_types_and_io/data_types_and_io/folder.py b/examples/data_types_and_io/data_types_and_io/folder.py index 46b0e5e5a..4b79e3233 100644 --- a/examples/data_types_and_io/data_types_and_io/folder.py +++ b/examples/data_types_and_io/data_types_and_io/folder.py @@ -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)"],