Skip to content

Commit

Permalink
reformat tests/test_utilities.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danlu1 committed Oct 28, 2024
1 parent 961d47c commit edd22ea
Showing 1 changed file with 36 additions and 6 deletions.
42 changes: 36 additions & 6 deletions scripts/table_updates/tests/test_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,16 +153,46 @@ def test_download_empty_synapse_table_with_condition(
"input_df,expected_df",
[
(
pd.DataFrame({"col1": ["\\abc", "def"], "col2": ["abc", "def\\"]}),
pd.DataFrame({"col1": ["abc", "def"], "col2": ["abc", "def"]}),
pd.DataFrame(
{
"col1": ["\\abc", "def"],
"col2": ["abc", "def\\"]
}
),
pd.DataFrame(
{
"col1": ["abc", "def"],
"col2": ["abc", "def"]
}
),
),
(
pd.DataFrame({"col1": ["abc", "def"], "col2": ["abc", "def\\"]}),
pd.DataFrame({"col1": ["abc", "def"], "col2": ["abc", "def"]}),
pd.DataFrame(
{
"col1": ["abc", "def"],
"col2": ["abc", "def\\"]
}
),
pd.DataFrame(
{
"col1": ["abc", "def"],
"col2": ["abc", "def"]
}
),
),
(
pd.DataFrame({"col1": ["abc", "def"], "col2": ["abc", "def"]}),
pd.DataFrame({"col1": ["abc", "def"], "col2": ["abc", "def"]}),
pd.DataFrame(
{
"col1": ["abc", "def"],
"col2": ["abc", "def"]
}
),
pd.DataFrame(
{
"col1": ["abc", "def"],
"col2": ["abc", "def"]
}
),
),
(
pd.DataFrame(
Expand Down

0 comments on commit edd22ea

Please sign in to comment.