Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanbhosale committed Jun 14, 2024
1 parent 6390bd8 commit 81cedea
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/data/test_make_pv_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ def test_make_pv_data(mock_get_enphase, site, expected_data, ts=pd.Timestamp('20
}
).to_dataset(name='generation_kw')

print("Result:")
print(result)
print("Expected:")
print(expected_xr)

assert result.equals(expected_xr)

@pytest.mark.parametrize("site, expected_data", [
Expand Down Expand Up @@ -75,9 +70,4 @@ def test_make_pv_data_empty_data(mock_get_enphase, site, expected_data, ts=pd.Ti
}
).to_dataset(name='generation_kw')

print("Result (Empty Data):")
print(result)
print("Expected (Empty Data):")
print(expected_xr)

assert result.equals(expected_xr)

0 comments on commit 81cedea

Please sign in to comment.